hw-succinct-0.0.0.2: Conduits for tokenizing streams.

Safe HaskellNone
LanguageHaskell2010

HaskellWorks.Data.Vector.StorableVectorLike

Documentation

class StorableVectorLike v e where Source

Methods

sImap :: (Storable a, Storable b) => (Int -> a -> b) -> v a -> v b Source

sMap :: (Storable a, Storable b) => (a -> b) -> v a -> v b Source

sUnfoldr :: Storable a => (b -> Maybe (a, b)) -> b -> v a Source

sUnfoldrN :: Storable a => Int -> (b -> Maybe (a, b)) -> b -> v a Source