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.

  1. 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.

  2. 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.

  3. 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

  4. fromList' :: ListLike full item => [item] -> full

    ListLike Data.ListLike.Base

    Generates the structure from a list.

  5. 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

  6. fromListClassOpKey :: Unique

    ghc-lib-parser GHC.Builtin.Names

    No documentation available.

  7. fromListNClassOpKey :: Unique

    ghc-lib-parser GHC.Builtin.Names

    No documentation available.

  8. fromListNName :: Name

    ghc-lib-parser GHC.Builtin.Names

    No documentation available.

  9. fromListName :: Name

    ghc-lib-parser GHC.Builtin.Names

    No documentation available.

  10. fromListWith :: (a -> a -> a) -> [(Key, a)] -> Word64Map a

    ghc-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
    

Page 47 of many | Previous | Next