biohazard-0.6.13: bioinformatics support library

Safe HaskellSafe
LanguageHaskell2010

Bio.Iteratee.ReadableChunk

Description

Monadic Iteratees: incremental input parsers, processors and transformers

Support for IO enumerators

Synopsis

Documentation

class Storable el => ReadableChunk s el | s -> el where Source #

Class of streams which can be filled from a Ptr. Typically these are streams which can be read from a file, Handle, or similar resource.

Minimal complete definition

readFromPtr

Methods

readFromPtr :: MonadIO m => Ptr el -> Int -> m s Source #