Safe Haskell | None |
---|---|
Language | Haskell2010 |
Documentation
class StorableVectorLike v e where Source #
Class of values that support storable vector like operations
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 #