Hoogle Search

Within LTS Haskell 24.46 (ghc-9.10.3)

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

  1. freqSumEntryToText :: FreqSumEntry -> ByteString

    sequence-formats SequenceFormats.FreqSum

    This function converts a single freqSum entry to a printable freqSum line.

  2. printFreqSumFile :: forall (m :: Type -> Type) . MonadSafe m => FilePath -> FreqSumHeader -> Consumer FreqSumEntry m ()

    sequence-formats SequenceFormats.FreqSum

    A function that writes a freqSum file. Expects the FilePath and the freqSum header as arguments, and then returns a Consumer that accepts freqSum entries.

  3. printFreqSumStdOut :: forall (m :: Type -> Type) . MonadIO m => FreqSumHeader -> Consumer FreqSumEntry m ()

    sequence-formats SequenceFormats.FreqSum

    A function to write freqSum data to StdOut. Expects the freqSum header as argument, and then returns a Consumer that accepts freqSum entries.

  4. readFreqSumFile :: MonadSafe m => FilePath -> m (FreqSumHeader, Producer FreqSumEntry m ())

    sequence-formats SequenceFormats.FreqSum

    A function to read a freqsum file from a file. Returns a pair of a freqSum Header and a Producer over all lines.

  5. readFreqSumStdIn :: (MonadIO m, MonadThrow m) => m (FreqSumHeader, Producer FreqSumEntry m ())

    sequence-formats SequenceFormats.FreqSum

    A function to read a freqsum file from StdIn. Returns a pair of a freqSum Header and a Producer over all lines.

  6. consumeProducer :: forall (m :: Type -> Type) a . MonadThrow m => Parser a -> Producer ByteString m () -> Producer a m ()

    sequence-formats SequenceFormats.Utils

    A helper function to parse a text producer, properly reporting all errors to stderr.

  7. gzipConsumer :: forall (m :: Type -> Type) . MonadIO m => Deflate -> Handle -> Consumer ByteString m ()

    sequence-formats SequenceFormats.Utils

    No documentation available.

  8. vcfToFreqSumEntry :: MonadThrow m => VCFentry -> m FreqSumEntry

    sequence-formats SequenceFormats.VCF

    Converts a VCFentry to the simpler FreqSum format

  9. addConsumes :: [MediaType] -> Swagger -> Swagger

    servant-swagger Servant.Swagger.Internal

    Add accepted content types to every operation in the spec.

  10. windowPowerSum :: forall (m :: Type -> Type) a . (Monad m, Num a) => Int -> Fold m (a, Maybe a) a

    streamly-core Streamly.Internal.Data.Fold

    Sum of the <math>th power of all the elements in a rolling window: <math>

    >>> powerSum k = lmap (^ k) sum
    
    Space: <math> Time: <math>

Page 179 of many | Previous | Next