Hoogle Search
Within LTS Haskell 24.60 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
lookup :: Feed1 -> Radix1Tree a -> Maybe aradix-tree Data.Radix1Tree.Word8.Lazy Look up the value at a key in the tree.
lookup :: Feed1 -> Radix1Tree a -> Maybe aradix-tree Data.Radix1Tree.Word8.Strict Look up the value at a key in the tree.
lookup :: Feed -> RadixTree a -> Maybe aradix-tree Data.RadixTree.Word8.Lazy Look up the value at a key in the tree.
lookup :: Feed -> RadixTree a -> Maybe aradix-tree Data.RadixTree.Word8.Strict Look up the value at a key in the tree.
lookup :: Word -> Zebra -> Colorradix-tree Data.Zebra.Word Look up the color of the key.
lookup :: Str -> Dictionary a -> Maybe arattletrap Rattletrap.Type.Dictionary No documentation available.
lookup :: Int -> Vector a -> Maybe arrb-vector Data.RRBVector The element at the index or Nothing if the index is out of range.
lookup :: Eq a => a -> Slist (a, b) -> Maybe bslist Slist O(n). Looks up by the given key in the slist of key-value pairs.
>>> lookup 42 $ slist $ [(1, "one"), (2, "two")] Nothing >>> lookup 42 $ slist $ [(1, "one"), (2, "two"), (42, "life, the universe and everything")] Just "life, the universe and everything" >>> lookup 1 $ zip (infiniteSlist [1..]) (infiniteSlist [0..]) Just 0
lookup :: ISessionManager r => Text -> r -> Maybe Textsnap Snap.Snaplet.Session.SessionManager Lookup a key in session
lookup :: (Monad m, Eq a) => a -> SerialT m (a, b) -> m (Maybe b)streamly Streamly.Internal.Data.Stream.IsStream In a stream of (key-value) pairs (a, b), return the value b of the first pair where the key equals the given value a.
lookup = snd <$> Stream.find ((==) . fst) lookup = Stream.fold Fold.lookup