Hoogle Search
Within LTS Haskell 24.4 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
fromList :: [(Key, a)] -> Word64Map aghc-lib-parser GHC.Data.Word64Map.Internal Create a map from a list of key/value pairs.
fromList [] == empty fromList [(5,"a"), (3,"b"), (5, "c")] == fromList [(5,"c"), (3,"b")] fromList [(5,"c"), (3,"b"), (5, "a")] == fromList [(5,"a"), (3,"b")]
fromList :: [(Key, a)] -> Word64Map aghc-lib-parser GHC.Data.Word64Map.Lazy Create a map from a list of key/value pairs.
fromList [] == empty fromList [(5,"a"), (3,"b"), (5, "c")] == fromList [(5,"c"), (3,"b")] fromList [(5,"c"), (3,"b"), (5, "a")] == fromList [(5,"a"), (3,"b")]
fromList :: [(Key, a)] -> Word64Map aghc-lib-parser GHC.Data.Word64Map.Strict Create a map from a list of key/value pairs.
fromList [] == empty fromList [(5,"a"), (3,"b"), (5, "c")] == fromList [(5,"c"), (3,"b")] fromList [(5,"c"), (3,"b"), (5, "a")] == fromList [(5,"a"), (3,"b")]
fromList :: [(Key, a)] -> Word64Map aghc-lib-parser GHC.Data.Word64Map.Strict.Internal Create a map from a list of key/value pairs.
fromList [] == empty fromList [(5,"a"), (3,"b"), (5, "c")] == fromList [(5,"c"), (3,"b")] fromList [(5,"c"), (3,"b"), (5, "a")] == fromList [(5,"a"), (3,"b")]
fromList :: [Key] -> Word64Setghc-lib-parser GHC.Data.Word64Set Create a set from a list of integers.
fromList :: [Key] -> Word64Setghc-lib-parser GHC.Data.Word64Set.Internal Create a set from a list of integers.
fromList :: [(TargetPath, FileInfo)] -> FileMaphackage-security Hackage.Security.TUF.FileMap No documentation available.
fromList :: Ord k => [(k, v)] -> OMap k vordered-containers Data.Map.Ordered If a key appears multiple times, the first occurrence is used for ordering and the last occurrence is used for its value. The library author welcomes comments on whether this default is sane.
fromList :: Ord k => [(k, v)] -> OMap k vordered-containers Data.Map.Ordered.Strict If a key appears multiple times, the first occurrence is used for ordering and the last occurrence is used for its value. The library author welcomes comments on whether this default is sane.
fromList :: Ord a => [a] -> OSet aordered-containers Data.Set.Ordered If a value occurs multiple times, only the first occurrence is used.