Hoogle Search
Within LTS Haskell 24.31 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
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.
fromList :: [a] -> Maybe (PointedList a)pointedlist Data.List.PointedList Possibly create a Just PointedList if the provided list has at least one element; otherwise, return Nothing. The provided list's head will be the focus of the list, and the rest of list will follow on the right side.
fromList :: [a] -> Maybe (PointedList a)pointedlist Data.List.PointedList.Circular Possibly create a Just PointedList if the provided list has at least one element; otherwise, return Nothing. The provided list's head will be the focus of the list, and the rest of list will follow on the right side.
fromList :: (Hashable k, Ord k, Ord p) => [(k, p, v)] -> HashPSQ k p vpsqueues Data.HashPSQ O(n*min(n,W)) Build a queue from a list of (key, priority, value) tuples. If the list contains more than one priority and value for the same key, the last priority and value for the key is retained.
fromList :: Ord p => [(Int, p, v)] -> IntPSQ p vpsqueues Data.IntPSQ O(n*min(n,W)) Build a queue from a list of (key, priority, value) tuples. If the list contains more than one priority and value for the same key, the last priority and value for the key is retained.
fromList :: (Ord k, Ord p) => [(k, p, v)] -> OrdPSQ k p vpsqueues Data.OrdPSQ O(n*log n) Build a queue from a list of (key, priority, value) tuples. If the list contains more than one priority and value for the same key, the last priority and value for the key is retained.
fromList :: IsList l => [Item l] -> lListLike Data.ListLike The fromList function constructs the structure l from the given list of Item l
fromList :: IsList l => [Item l] -> lListLike Data.ListLike.Base The fromList function constructs the structure l from the given list of Item l
fromList :: [(Int, Run a)] -> IMap abrick Data.IMap No documentation available.