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.
catMaybesReversed :: List (Maybe a) -> List astrict-list StrictList Keep only the present values, reversing the order.
explodeReversed :: (a -> List b) -> List a -> List bstrict-list StrictList Use a function to produce a list of lists and then concat them sequentially, producing the results in reversed order.
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.