Hoogle Search

Within LTS Haskell 24.28 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. toList :: forall (n :: Natural) a . Vector n a -> [a]

    parameterized-utils Data.Parameterized.Vector

    Get the elements of the vector as a list, lowest index first.

  2. module Data.List.PointedList

    An implementation of a zipper-like non-empty list structure that tracks an index position in the list (the focus).

  3. data PointedList a

    pointedlist Data.List.PointedList

    The implementation of the pointed list structure which tracks the current position in the list structure.

  4. PointedList :: [a] -> a -> [a] -> PointedList a

    pointedlist Data.List.PointedList

    No documentation available.

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

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

  7. data PointedList a

    pointedlist Data.List.PointedList.Circular

    The implementation of the pointed list structure which tracks the current position in the list structure.

  8. PointedList :: [a] -> a -> [a] -> PointedList a

    pointedlist Data.List.PointedList.Circular

    No documentation available.

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

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

Page 105 of many | Previous | Next