Hoogle Search
Within LTS Haskell 24.35 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
toMinList :: NonEmpty a -> NonNull [a]mono-traversable Data.NonNull Specializes fromNonEmpty to lists only.
fromList :: IsSequence seq => [Element seq] -> seqmono-traversable Data.Sequences Convert a list to a sequence.
> fromList [a, b, c] :: Text "abc"
-
postgresql-simple Database.PostgreSQL.Simple.HStore No documentation available.
HStoreList :: [(Text, Text)] -> HStoreListpostgresql-simple Database.PostgreSQL.Simple.HStore No documentation available.
fromHStoreList :: HStoreList -> [(Text, Text)]postgresql-simple Database.PostgreSQL.Simple.HStore No documentation available.
parseHStoreList :: ByteString -> Either String HStoreListpostgresql-simple Database.PostgreSQL.Simple.HStore No documentation available.
fromList :: (HashTable h, Eq k, Hashable k) => [(k, v)] -> ST s (h s k v)hashtables Data.HashTable.Class Create a hash table from a list of key-value pairs. O(n).
fromListWithSizeHint :: (HashTable h, Eq k, Hashable k) => Int -> [(k, v)] -> ST s (h s k v)hashtables Data.HashTable.Class Create a hash table from a list of key-value pairs, with a size hint. O(n).
toList :: HashTable h => h s k v -> ST s [(k, v)]hashtables Data.HashTable.Class Given a hash table, produce a list of key-value pairs. O(n).
fromList :: (HashTable h, Eq k, Hashable k) => [(k, v)] -> IO (IOHashTable h k v)hashtables Data.HashTable.IO See the documentation for this function in fromList.