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 :: TargetPath -> FileMap -> Maybe FileInfo

    hackage-security Hackage.Security.TUF.FileMap

    No documentation available.

  2. lookup :: Configured a => Config -> Name -> IO (Maybe a)

    configurator Data.Configurator

    Look up a name in the given Config. If a binding exists, and the value can be converted to the desired type, return the converted value, otherwise Nothing.

  3. lookup :: Text -> Int -> Context a -> Maybe a

    dhall Dhall.Context

    Look up a key by name and index

    lookup _ _         empty  = Nothing
    lookup k 0 (insert k v c) = Just v
    lookup k n (insert k v c) = lookup k (n - 1) c
    lookup k n (insert j v c) = lookup k  n      c  -- k /= j
    

  4. lookup :: Ord k => k -> Map k v -> Maybe v

    dhall Dhall.Map

    Retrieve a key from a Map

    lookup k mempty = empty
    
    lookup k (x <> y) = lookup k y <|> lookup k x
    
    >>> lookup "A" (fromList [("B",1),("A",2)])
    Just 2
    
    >>> lookup "C" (fromList [("B",1),("A",2)])
    Nothing
    

  5. lookup :: Insertable k => k -> MultiMap k v -> Maybe [v]

    distributed-process-extras Control.Distributed.Process.Extras.Internal.Containers.MultiMap

    No documentation available.

  6. lookup :: Expr -> Triexpr a -> [(Expr, [(Expr, Expr)], a)]

    express Data.Express.Triexpr

    Performs a lookup in a Triexpr.

  7. lookup :: KeyedCollection c => Key c -> c -> Maybe (Value c)

    foundation Foundation.Collection

    No documentation available.

  8. lookup :: Lookup f => Key f -> f a -> Maybe a

    keys Data.Key

    No documentation available.

  9. lookup :: (Eq k, Hashable k) => k -> MonoidalHashMap k v -> Maybe v

    monoidal-containers Data.HashMap.Monoidal

    O(log n) Return the value to which the specified key is mapped, or Nothing if this map contains no mapping for the key.

  10. lookup :: Int -> MonoidalIntMap a -> Maybe a

    monoidal-containers Data.IntMap.Monoidal

    No documentation available.

Page 10 of many | Previous | Next