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 k => Key ph k -> Map ph k v -> v

    justified-containers Data.Map.Justified

    O(log n). Lookup the value at a key, known to be in the map. The result is a v rather than a Maybe v, because the proof obligation that the key is in the map must already have been discharged to obtain a value of type Key ph k.

  2. lookup :: ByteString -> LabelMap a -> Maybe a

    keter Keter.LabelMap

    No documentation available.

  3. lookup :: (Eq a, Monad m) => a -> Stream m (a, b) -> m (Maybe b)

    leveldb-haskell Data.Stream.Monadic

    No documentation available.

  4. lookup :: Eq k => k -> AssociationList k a -> Maybe a

    mockcat Test.MockCat.AssociationList

    No documentation available.

  5. lookup :: MonadCache k v m => k -> m (Maybe v)

    monad-memo Control.Monad.Memo.Class

    No documentation available.

  6. lookup :: MapLike c k v => k -> c -> Maybe v

    monad-memo Data.MapLike

    No documentation available.

  7. lookup :: MapLike c k v => k -> c -> Maybe v

    monad-memo Data.MapLike.Instances

    No documentation available.

  8. lookup :: MultiMap m k v => k -> m k v -> Set v

    monoidmap-examples Data.MonoidMap.Examples.MultiMap

    Returns the set of values associated with a given key.

    lookup k (fromList kvs) ≡ foldMap snd (filter ((== k) . fst) kvs)
    

  9. lookup :: MultiMap m k v => k -> m k v -> Set v

    monoidmap-examples Data.MonoidMap.Examples.MultiMap.Class

    Returns the set of values associated with a given key.

    lookup k (fromList kvs) ≡ foldMap snd (filter ((== k) . fst) kvs)
    

  10. lookup :: (Typeable a, FromJSON a) => Connection -> JSONTable a -> Id a -> IO (Maybe a)

    mysql-json-table Database.MySQL.JSONTable

    Lookup a row in a table.

Page 20 of many | Previous | Next