Hoogle Search

Within LTS Haskell 24.10 (ghc-9.10.2)

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

  1. filterReversed :: (a -> Bool) -> List a -> List a

    strict-list StrictList

    Leave only the elements satisfying the predicate, producing a list in reversed order.

  2. fromListReversed :: [a] -> List a

    strict-list StrictList

    Construct from a lazy list in reversed order.

  3. initReversed :: List a -> List a

    strict-list StrictList

    Get all elements but the last one, producing the results in reverse order.

  4. joinReversed :: List (List a) -> List a

    strict-list StrictList

    Join (concat) producing results in reversed order.

  5. mapMaybeReversed :: (a -> Maybe b) -> List a -> List b

    strict-list StrictList

    Map and filter elements producing results in reversed order.

  6. mapReversed :: (a -> b) -> List a -> List b

    strict-list StrictList

    Map producing a list in reversed order.

  7. prependReversed :: List a -> List a -> List a

    strict-list StrictList

    Add elements of the left list in reverse order in the beginning of the right list.

  8. spanReversed :: (a -> Bool) -> List a -> (List a, List a)

    strict-list StrictList

    Same as span, only with the first list in reverse order.

  9. takeReversed :: Int -> List a -> List a

    strict-list StrictList

    Leave only the specified amount of elements, in reverse order.

  10. takeWhileReversed :: (a -> Bool) -> List a -> List a

    strict-list StrictList

    Leave only the first elements satisfying the predicate, producing a list in reversed order.

Page 65 of many | Previous | Next