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.

  1. toListF :: FoldableF t => (forall (tp :: k) . () => f tp -> a) -> t f -> [a]

    parameterized-utils Data.Parameterized.TraversableF

    Convert structure to list.

  2. toListFC :: FoldableFC t => (forall (x :: k) . () => f x -> a) -> forall (x :: l) . () => t f x -> [a]

    parameterized-utils Data.Parameterized.TraversableFC

    Convert structure to list.

  3. itoListFC :: forall f a (z :: l) . FoldableFCWithIndex t => (forall (x :: k) . () => IndexF (t f z) x -> f x -> a) -> t f z -> [a]

    parameterized-utils Data.Parameterized.TraversableFC.WithIndex

    Convert structure to list.

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

  5. module Data.List.PointedList

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

  6. data PointedList a

    pointedlist Data.List.PointedList

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

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

    pointedlist Data.List.PointedList

    No documentation available.

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

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

  10. data PointedList a

    pointedlist Data.List.PointedList.Circular

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

Page 104 of many | Previous | Next