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.

  1. lookup :: Eq a => a -> [(a, b)] -> Maybe b

    Cabal-syntax Distribution.Compat.Prelude

    No documentation available.

  2. lookup :: StaticMap t => Key t -> t -> Maybe (Val t)

    relude Relude.Extra.Map

    No documentation available.

  3. lookup :: Key a -> Context -> Maybe a

    hs-opentelemetry-api OpenTelemetry.Context

    No documentation available.

  4. lookup :: (Eq k, Hashable k) => k -> InsOrdHashMap k v -> Maybe v

    insert-ordered-containers Data.HashMap.Strict.InsOrd

    No documentation available.

  5. lookup :: (Ord k, Hashable k) => k -> Store k v -> Maybe (v, Store k v)

    wreq Network.Wreq.Cache.Store

    No documentation available.

  6. lookup :: CI ByteString -> Headers -> Maybe ByteString

    snap-core Snap.Types.Headers

    Look up the value of a given HTTP header field. Example:

    ghci> :set -XOverloadedStrings
    ghci> H.lookup "host" $ H.fromList [("Host", "localhost")]
    Just "localhost"
    ghci> H.lookup "Accept" $ H.fromList [("Host", "localhost")]
    Nothing
    

  7. lookup :: Eq a => a -> Infinite (a, b) -> b

    infinite-list Data.List.Infinite

    Find the first pair, whose first component is equal to the first argument, and return the second component. If there is nothing to be found, this function will hang indefinitely.

  8. lookup :: (Ord a, Ord b, MonadThrow m) => a -> Bimap a b -> m b

    bimap Data.Bimap

    O(log n). Lookup a left key in the bimap, returning the associated right key. This function will return the result in the monad, or fail if the value isn't in the bimap. Note that the signature differs slightly from Data.Map's lookup. This one is more general - it functions the same way as the "original" if m is cast (or inferred) to Maybe. Version: 0.2

  9. lookup :: Enum k => k -> EnumMap k a -> Maybe a

    enummapset Data.EnumMap.Lazy

    No documentation available.

  10. lookup :: Enum k => k -> EnumMap k a -> Maybe a

    enummapset Data.EnumMap.Strict

    No documentation available.

Page 6 of many | Previous | Next