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 :: Ord c => [c] -> TMap c a -> Maybe a

    trie-simple Data.Trie.Map

    lookup xs tmap returns Just a if tmap contains mapping from xs to a, and returns Nothing if not.

  2. lookup :: (Eq k, Hashable k) => k -> Map k v -> STM (Maybe v)

    ttrie Control.Concurrent.STM.Map

    O(log n). Return the value associated with the given key, or Nothing. Note: This might increase the map's memory consumption by putting the key into the map. If that is not acceptable, use phantomLookup.

  3. lookup :: forall t x proxy . Typeable t => proxy t -> TypeMap x -> Maybe (Item x t)

    type-map Data.TypeMap.Dynamic

    Lookup an element indexed by type t.

  4. lookup :: Typeable t => TypeMap x -> Maybe (Item x t)

    type-map Data.TypeMap.Dynamic.Alt

    Lookup an element indexed by type t.

  5. lookup :: forall t x proxy . Typeable t => proxy t -> TypeMap x -> Maybe (Item x t)

    type-map Data.TypeMap.Internal.Dynamic

    Lookup an element indexed by type t.

  6. lookup :: Typeable t => TypeMap x -> Maybe (Item x t)

    type-map Data.TypeMap.Internal.Dynamic.Alt

    Lookup an element indexed by type t.

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

    IntervalMap Data.IntervalMap.Generic.Lazy

    O(log n). Look up the given key in the map, returning the value (Just value), or Nothing if the key is not in the map.

  8. lookup :: Ord k => k -> IntervalMap k v -> Maybe v

    IntervalMap Data.IntervalMap.Generic.Strict

    O(log n). Look up the given key in the map, returning the value (Just value), or Nothing if the key is not in the map.

  9. lookup :: Ord k => k -> IntervalMap k v -> Maybe v

    IntervalMap Data.IntervalMap.Lazy

    O(log n). Look up the given key in the map, returning the value (Just value), or Nothing if the key is not in the map.

  10. lookup :: Ord k => k -> IntervalMap k v -> Maybe v

    IntervalMap Data.IntervalMap.Strict

    O(log n). Look up the given key in the map, returning the value (Just value), or Nothing if the key is not in the map.

Page 23 of many | Previous | Next