Hoogle Search

Within LTS Haskell 24.6 (ghc-9.10.2)

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

  1. reverseVideo :: Style

    vty Graphics.Vty.Attributes

    Valid style attributes include:

    • standout
    • underline
    • reverseVideo
    • blink
    • dim
    • bold/bright
    • italic
    • strikethrough (via the smxx/rmxx terminfo capabilities)
    (The invisible, protect, and altcharset display attributes some terminals support are not supported via VTY.)

  2. reverseOnto :: Chunks -> Chunks -> Chunks

    byteslice Data.Bytes.Chunks

    Variant of reverse that allows the caller to provide an initial list of chunks that the reversed chunks will be pushed onto.

  3. reverse' :: forall r ix e . (HasCallStack, Index ix, Source r e) => Dim -> Array r ix e -> Array D ix e

    massiv Data.Massiv.Array

    Reverse an array along some dimension. Same as reverseM, but throws the IndexDimensionException from pure code.

  4. reverseM :: forall r ix e m . (MonadThrow m, Index ix, Source r e) => Dim -> Array r ix e -> m (Array D ix e)

    massiv Data.Massiv.Array

    Similarly to reverse, flip an array along a particular dimension, but throws IndexDimensionException for an incorrect dimension.

  5. reverseScanr :: (Char -> Char -> Char) -> Char -> Stream Char -> Stream Char

    jsaddle Data.JSString.Internal.Fusion

    O(n) Perform the equivalent of scanr over a list, only with the input and result reversed.

  6. reverseStream :: JSString -> Stream Char

    jsaddle Data.JSString.Internal.Fusion

    O(n) Convert a JSString into a 'Stream Char', but iterate backwards.

  7. reversedPrefix :: Functor f => ([a] -> f [a]) -> PointedList a -> f (PointedList a)

    pointedlist Data.List.PointedList

    Lens compatible with Control.Lens.

  8. reverseClip :: Clip s n -> Clip s n

    brick Brick.Animation

    Reverse a clip.

  9. reverseBinaryDigits :: Integral a => a -> Unfoldr a

    deferred-folds DeferredFolds.Unfoldr

    Binary digits of a non-negative integral number in reverse order.

  10. reverseDecimalDigits :: Integral a => a -> Unfoldr a

    deferred-folds DeferredFolds.Unfoldr

    Decimal digits of a non-negative integral number in reverse order. More efficient than decimalDigits.

Page 27 of many | Previous | Next