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. toList :: InsOrdHashMap k v -> [(k, v)]

    insert-ordered-containers Data.HashMap.Strict.InsOrd

    No documentation available.

  2. toRevList :: InsOrdHashMap k v -> [(k, v)]

    insert-ordered-containers Data.HashMap.Strict.InsOrd

    No documentation available.

  3. fromList :: (Eq k, Hashable k) => [k] -> InsOrdHashSet k

    insert-ordered-containers Data.HashSet.InsOrd

    No documentation available.

  4. toList :: InsOrdHashSet k -> [k]

    insert-ordered-containers Data.HashSet.InsOrd

    No documentation available.

  5. class RecordToList (rs :: [u])

    vinyl Data.Vinyl.Core

    A record with uniform fields may be turned into a list.

  6. recordToList :: RecordToList rs => Rec (Const a :: u -> Type) rs -> [a]

    vinyl Data.Vinyl.Core

    No documentation available.

  7. type HList = Rec Identity

    vinyl Data.Vinyl.Derived

    Heterogeneous list whose elements are evaluated during list construction.

  8. type LazyHList = Rec Thunk

    vinyl Data.Vinyl.Derived

    Heterogeneous list whose elements are left as-is during list construction (cf. HList).

  9. appendList :: NonEmpty a -> [a] -> NonEmpty a

    base-compat-batteries Data.List.NonEmpty.Compat

    Attach a list at the end of a NonEmpty.

    >>> appendList (1 :| [2,3]) []
    1 :| [2,3]
    
    >>> appendList (1 :| [2,3]) [4,5]
    1 :| [2,3,4,5]
    

  10. fromList :: HasCallStack => [a] -> NonEmpty a

    base-compat-batteries Data.List.NonEmpty.Compat

    Converts a normal list to a NonEmpty stream. Raises an error if given an empty list.

Page 82 of many | Previous | Next