Hoogle Search
Within LTS Haskell 24.4 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
lookup :: Int -> IntPSQ p v -> Maybe (p, v)psqueues Data.IntPSQ O(min(n,W)) The priority and value of a given key, or Nothing if the key is not bound.
lookup :: Ord k => k -> OrdPSQ k p v -> Maybe (p, v)psqueues Data.OrdPSQ O(log n) The priority and value of a given key, or Nothing if the key is not bound.
lookup :: FastMutableIntMap a -> Int -> IO (Maybe a)reflex Data.FastMutableIntMap Attempt to lookup an element by key in a FastMutableIntMap
lookup :: Eq a => a -> [(a, b)] -> Maybe bbasic-prelude BasicPrelude lookup key assocs looks up a key in an association list. For the result to be Nothing, the list must be finite.
Examples
>>> lookup 2 [] Nothing
>>> lookup 2 [(1, "first")] Nothing
>>> lookup 2 [(1, "first"), (2, "second"), (3, "third")] Just "second"
lookup :: Location -> BorderMap a -> Maybe abrick Brick.BorderMap Look up a single position.
lookup :: Int -> IMap a -> Maybe abrick Data.IMap No documentation available.
lookup :: forall (m :: Type -> Type) a . Monad m => Focus a m (Maybe a)focus Focus Reproduces the behaviour of Data.Map.lookup.
lookup :: Key -> Word64Map a -> Maybe aghc-lib-parser GHC.Data.Word64Map.Internal Lookup the value at a key in the map. See also lookup.
lookup :: Key -> Word64Map a -> Maybe aghc-lib-parser GHC.Data.Word64Map.Lazy Lookup the value at a key in the map. See also lookup.
lookup :: Key -> Word64Map a -> Maybe aghc-lib-parser GHC.Data.Word64Map.Strict Lookup the value at a key in the map. See also lookup.