Hoogle Search

Within LTS Haskell 24.10 (ghc-9.10.2)

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

  1. lookup :: DomCod z => z -> Dom z -> Maybe (Cod z)

    bimaps Data.Bijection.Class

    No documentation available.

  2. lookup :: BinList a -> Int -> Maybe a

    binary-list Data.BinaryList

    O(log n). Lookup an element in the list by its index (starting from 0). If the index is out of range, Nothing is returned.

  3. lookup :: ByteString -> Trie a -> Maybe a

    bytestring-trie Data.Trie

    Return the value associated with a query string if it exists.

  4. lookup :: (IsUnit ipkg, IsUnit srcpkg) => GenericInstallPlan ipkg srcpkg -> UnitId -> Maybe (GenericPlanPackage ipkg srcpkg)

    cabal-install Distribution.Client.InstallPlan

    Lookup a package in the plan.

  5. lookup :: Ord p => p -> LexTree p a -> Maybe a

    calligraphy Calligraphy.Util.LexTree

    No documentation available.

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

    clash-prelude Clash.HaskellPrelude

    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"
    

  7. lookup :: Ord k => k -> CompactMap k v -> Maybe v

    compactmap Data.CompactMap

    No documentation available.

  8. lookup :: forall (vec :: Type -> Type) v k . (Vector vec v, Ord k) => k -> CompactMap vec k v -> Maybe v

    compactmap Data.CompactMap.Generic

    No documentation available.

  9. lookup :: FromField a => NamedRecord -> ByteString -> Parser a

    csv-conduit Data.CSV.Conduit.Conversion

    Retrieve a field in the given record by name. The result is empty if the field is missing or if the value cannot be converted to the desired type.

  10. 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.

Page 17 of many | Previous | Next