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.
fromList :: MultiMap m k v => [(k, Set v)] -> m k vmonoidmap-examples Data.MonoidMap.Examples.MultiMap.Class Constructs a multimap from a list of key to value set mappings. Removing empty sets from the input list does not affect the result:
fromList ≡ fromList . filter ((/= Set.empty) . snd)
fromList :: Ord a => [(a, Natural)] -> MultiSet amonoidmap-examples Data.MonoidMap.Examples.MultiSet No documentation available.
-
more-containers Data.Multimap O(n * log n) Builds a multimap from a list of key, value tuples. The values are in the same order as in the original list.
fromList :: Ord v => [v] -> Multiset vmore-containers Data.Multiset O(n * log n) Builds a multiset from values.
-
parser-regex Data.CharSet Create a set from Chars in a list.
-
parser-regex Regex.Internal.CharSet Create a set from Chars in a list.
fromList :: [(Text, Text)] -> Labelsprometheus System.Metrics.Prometheus.MetricId No documentation available.
fromList :: Ord a => [a] -> Set aprotobuf-simple Data.ProtoBufInt Create a set from a list of elements. If the elements are ordered, a linear-time implementation is used.
fromList :: Storable a => [a] -> Vector aqchas QC No documentation available.
-
queues Queue Construct a queue from a list. The head of the list corresponds to the front of the queue.