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.
-
containers Data.Map.Strict.Internal Convert the map to a list of key/value pairs. Subject to list fusion.
toList (fromList [(5,"a"), (3,"b")]) == [(3,"b"), (5,"a")] toList empty == []
-
containers Data.Sequence Create a sequence from a finite list of elements. There is a function toList in the opposite direction for all instances of the Foldable class, including Seq.
-
containers Data.Sequence.Internal Create a sequence from a finite list of elements. There is a function toList in the opposite direction for all instances of the Foldable class, including Seq.
-
containers Data.Sequence.Internal.Sorting No documentation available.
-
containers Data.Sequence.Internal.Sorting No documentation available.
-
containers Data.Sequence.Internal.Sorting No documentation available.
-
containers Data.Sequence.Internal.Sorting No documentation available.
fromAscList :: Eq a => [a] -> Set acontainers Data.Set Build a set from an ascending list in linear time. The precondition (input list is ascending) is not checked.
fromDescList :: Eq a => [a] -> Set acontainers Data.Set Build a set from a descending list in linear time. The precondition (input list is descending) is not checked.
fromDistinctAscList :: [a] -> Set acontainers Data.Set Build a set from an ascending list of distinct elements in linear time. The precondition (input list is strictly ascending) is not checked.