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.
filterReversed :: (a -> Bool) -> List a -> List astrict-list StrictList Leave only the elements satisfying the predicate, producing a list in reversed order.
fromListReversed :: [a] -> List astrict-list StrictList Construct from a lazy list in reversed order.
initReversed :: List a -> List astrict-list StrictList Get all elements but the last one, producing the results in reverse order.
joinReversed :: List (List a) -> List astrict-list StrictList Join (concat) producing results in reversed order.
mapMaybeReversed :: (a -> Maybe b) -> List a -> List bstrict-list StrictList Map and filter elements producing results in reversed order.
mapReversed :: (a -> b) -> List a -> List bstrict-list StrictList Map producing a list in reversed order.
prependReversed :: List a -> List a -> List astrict-list StrictList Add elements of the left list in reverse order in the beginning of the right list.
spanReversed :: (a -> Bool) -> List a -> (List a, List a)strict-list StrictList Same as span, only with the first list in reverse order.
takeReversed :: Int -> List a -> List astrict-list StrictList Leave only the specified amount of elements, in reverse order.
takeWhileReversed :: (a -> Bool) -> List a -> List astrict-list StrictList Leave only the first elements satisfying the predicate, producing a list in reversed order.