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. reversedOnto :: Int -> Builder -> Chunks -> Chunks

    bytebuild Data.Bytes.Builder

    Variant of runOnto that conses the additional chunks in reverse order.

  2. reverseCommitsOntoChunks :: Chunks -> Commits s -> ST s Chunks

    bytebuild Data.Bytes.Builder.Unsafe

    Cons the chunks from a list of Commits onto an initial Chunks list (this argument is often ChunksNil). This reverses the order of the chunks, which is desirable since builders assemble Commits with the chunks backwards. This performs an in-place shrink and freezes any mutable byte arrays it encounters. Consequently, these must not be reused.

  3. reverseSubforests :: Tree a -> Tree a

    commonmark Commonmark.Blocks

    No documentation available.

  4. reverseMutable :: forall (arr :: Type -> Type) a m . (Contiguous arr, Element arr a, PrimMonad m) => Mutable arr (PrimState m) a -> m ()

    contiguous Data.Primitive.Contiguous

    Reverse the elements of a mutable array, in-place.

  5. reverseSlice :: forall (arr :: Type -> Type) a m . (Contiguous arr, Element arr a, PrimMonad m) => Mutable arr (PrimState m) a -> Int -> Int -> m ()

    contiguous Data.Primitive.Contiguous

    Reverse the elements of a slice of a mutable array, in-place.

  6. reverses :: Dims -> Array a -> Array a

    harpie Harpie.Array

    Reverses element order along specified dimensions.

    >>> pretty $ reverses [0,1] a
    [[[20,21,22,23],
    [16,17,18,19],
    [12,13,14,15]],
    [[8,9,10,11],
    [4,5,6,7],
    [0,1,2,3]]]
    

  7. reverses :: forall (ds :: [Nat]) (s :: [Nat]) a . KnownNats s => Dims ds -> Array s a -> Array s a

    harpie Harpie.Fixed

    Reverses element order along specified dimensions.

    >>> pretty $ reverses (Dims @[0,1]) a
    [[[20,21,22,23],
    [16,17,18,19],
    [12,13,14,15]],
    [[8,9,10,11],
    [4,5,6,7],
    [0,1,2,3]]]
    

  8. reverseIndex :: [Int] -> [Int] -> [Int] -> [Int]

    harpie Harpie.Shape

    reverse an index along specific dimensions.

    >>> reverseIndex [0] [2,3,4] [0,1,2]
    [1,1,2]
    

  9. reverseStored :: Storable a => T a -> T a

    synthesizer-core Synthesizer.State.Signal

    No documentation available.

  10. reverseStoredSize :: Storable a => ChunkSize -> T a -> T a

    synthesizer-core Synthesizer.State.Signal

    No documentation available.

Page 29 of many | Previous | Next