Hoogle Search

Within LTS Haskell 24.34 (ghc-9.10.3)

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

  1. getSum :: Sum a -> a

    optparse-generic Options.Generic

    No documentation available.

  2. dsumToEither :: DSum (EitherTag a b) Identity -> Either a b

    patch Data.Functor.Misc

    Convert DSum to Either. Inverse of eitherToDSum.

  3. eitherToDSum :: Either a b -> DSum (EitherTag a b) Identity

    patch Data.Functor.Misc

    Convert Either to a DSum. Inverse of dsumToEither.

  4. psum :: (Foldable t, Plus f) => t (f a) -> f a

    rebase Rebase.Prelude

    The sum of a collection of actions, generalizing concat.

    >>> psum [Just "Hello", Nothing, Just "World"]
    Just "Hello"
    

  5. consume :: MonadIO m => ByteBuffer -> Int -> m (Either Int ByteString)

    store System.IO.ByteBuffer

    As unsafeConsume, but instead of returning a Ptr into the contents of the ByteBuffer, it returns a ByteString containing the next n bytes in the buffer. This involves allocating a new ByteString and copying the n bytes to it.

  6. unsafeConsume :: MonadIO m => ByteBuffer -> Int -> m (Either Int (Ptr Word8))

    store System.IO.ByteBuffer

    Try to get a pointer to n bytes from the ByteBuffer. Note that the pointer should be used before any other actions are performed on the ByteBuffer. It points to some address within the buffer, so operations such as enlarging the buffer or feeding it new data will change the data the pointer points to. This is why this function is called unsafe.

  7. volumeSum :: (C y, C y, Read sig y) => sig y -> y

    synthesizer-core Synthesizer.Generic.Analysis

    Volume based on Sum norm.

  8. volumeVectorSum :: (C y yv, C y, Read sig yv) => sig yv -> y

    synthesizer-core Synthesizer.Generic.Analysis

    Volume based on Sum norm.

  9. consumeRangeFromPyramid :: Transform sig v => (v -> a -> a) -> a -> [sig v] -> (Int, Int) -> a

    synthesizer-core Synthesizer.Generic.Filter.NonRecursive

    No documentation available.

  10. volumeSum :: (C y, C y) => T y -> y

    synthesizer-core Synthesizer.Plain.Analysis

    Volume based on Sum norm.

Page 158 of many | Previous | Next