Hoogle Search

Within LTS Haskell 24.6 (ghc-9.10.2)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. lookup :: (Eq k, Hashable k) => k -> Map k v -> IO (Maybe v)

    ctrie Control.Concurrent.Map

    O(log n). Return the value associated with the given key, or Nothing.

  2. lookup :: Ord k => k -> IntervalMap k a -> Maybe a

    data-interval Data.IntervalMap.Lazy

    Lookup the value at a key in the map. The function will return the corresponding value as (Just value), or Nothing if the key isn't in the map.

  3. lookup :: Ord k => k -> IntervalMap k a -> Maybe a

    data-interval Data.IntervalMap.Strict

    Lookup the value at a key in the map. The function will return the corresponding value as (Just value), or Nothing if the key isn't in the map.

  4. lookup :: Int -> DEPQ p v -> Maybe (p, v)

    depq Data.DEPQ

    Lookup a key

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

    dimensional Numeric.Units.Dimensional.Prelude

    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"
    

  6. lookup :: Key -> WordMap v -> Maybe v

    discrimination Data.Discrimination.Internal.WordMap

    No documentation available.

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

    distribution-opensuse OpenSuse.Prelude

    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"
    

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

    faktory Faktory.Prelude

    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"
    

  9. lookup :: Text -> Header -> Maybe Value

    fits-parse Data.Fits

    No documentation available.

  10. lookup :: Eq a => a -> CmdMemoizer a b -> Maybe b

    ghci4luatex Data.Memoizer.Commands

    Access the memoized result of a command if it is equal to the current memoized command

Page 18 of many | Previous | Next