Hoogle Search
Within LTS Haskell 24.3 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
fromListEnd :: [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 last element will be the focus of the list, following the rest of the list in order, to the left.
fromListEnd :: [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 last element will be the focus of the list, following the rest of the list in order, to the left.
fromListLike :: (ListLike full item, ListLike full' item) => full -> full'ListLike Data.ListLike Converts one ListLike to another. See also toList'. Default implementation is fromListLike = map id
fromList' :: ListLike full item => [item] -> fullListLike Data.ListLike.Base Generates the structure from a list.
fromListLike :: (ListLike full item, ListLike full' item) => full -> full'ListLike Data.ListLike.Base Converts one ListLike to another. See also toList'. Default implementation is fromListLike = map id
-
ghc-lib-parser GHC.Builtin.Names No documentation available.
-
ghc-lib-parser GHC.Builtin.Names No documentation available.
-
ghc-lib-parser GHC.Builtin.Names No documentation available.
-
ghc-lib-parser GHC.Builtin.Names No documentation available.
fromListWith :: (a -> a -> a) -> [(Key, a)] -> Word64Map aghc-lib-parser GHC.Data.Word64Map.Internal Create a map from a list of key/value pairs with a combining function. See also fromAscListWith.
fromListWith (++) [(5,"a"), (5,"b"), (3,"b"), (3,"a"), (5,"c")] == fromList [(3, "ab"), (5, "cba")] fromListWith (++) [] == empty