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.
toList :: InsOrdHashMap k v -> [(k, v)]insert-ordered-containers Data.HashMap.Strict.InsOrd No documentation available.
toRevList :: InsOrdHashMap k v -> [(k, v)]insert-ordered-containers Data.HashMap.Strict.InsOrd No documentation available.
fromList :: (Eq k, Hashable k) => [k] -> InsOrdHashSet kinsert-ordered-containers Data.HashSet.InsOrd No documentation available.
toList :: InsOrdHashSet k -> [k]insert-ordered-containers Data.HashSet.InsOrd No documentation available.
class
RecordToList (rs :: [u])vinyl Data.Vinyl.Core A record with uniform fields may be turned into a list.
recordToList :: RecordToList rs => Rec (Const a :: u -> Type) rs -> [a]vinyl Data.Vinyl.Core No documentation available.
-
vinyl Data.Vinyl.Derived Heterogeneous list whose elements are evaluated during list construction.
-
vinyl Data.Vinyl.Derived Heterogeneous list whose elements are left as-is during list construction (cf. HList).
appendList :: NonEmpty a -> [a] -> NonEmpty abase-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]
fromList :: HasCallStack => [a] -> NonEmpty abase-compat-batteries Data.List.NonEmpty.Compat Converts a normal list to a NonEmpty stream. Raises an error if given an empty list.