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.

  1. toMinList :: NonEmpty a -> NonNull [a]

    mono-traversable Data.NonNull

    Specializes fromNonEmpty to lists only.

  2. fromList :: IsSequence seq => [Element seq] -> seq

    mono-traversable Data.Sequences

    Convert a list to a sequence.

    > fromList [a, b, c] :: Text
    "abc"
    

  3. newtype HStoreList

    postgresql-simple Database.PostgreSQL.Simple.HStore

    No documentation available.

  4. HStoreList :: [(Text, Text)] -> HStoreList

    postgresql-simple Database.PostgreSQL.Simple.HStore

    No documentation available.

  5. fromHStoreList :: HStoreList -> [(Text, Text)]

    postgresql-simple Database.PostgreSQL.Simple.HStore

    No documentation available.

  6. parseHStoreList :: ByteString -> Either String HStoreList

    postgresql-simple Database.PostgreSQL.Simple.HStore

    No documentation available.

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

  8. 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).

  9. 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).

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

Page 76 of many | Previous | Next