Safe Haskell | None |
---|---|
Language | Haskell98 |
Data.ChunkedZip
Description
Various zipping and unzipping functions for chunked data structures.
Documentation
class Functor f => Zip f where Source
Minimal complete definition
class Functor f => Zip5 f where Source
Methods
zipWith5 :: (a -> b -> c -> d -> e -> g) -> f a -> f b -> f c -> f d -> f e -> f g Source
zip5 :: f a -> f b -> f c -> f d -> f e -> f (a, b, c, d, e) Source
zap5 :: f (a -> b -> c -> d -> e) -> f a -> f b -> f c -> f d -> f e Source
unzip5 :: f (a, b, c, d, e) -> (f a, f b, f c, f d, f e) Source
class Functor f => Zip6 f where Source
Methods
zipWith6 :: (a -> b -> c -> d -> e -> g -> h) -> f a -> f b -> f c -> f d -> f e -> f g -> f h Source
zip6 :: f a -> f b -> f c -> f d -> f e -> f g -> f (a, b, c, d, e, g) Source
zap6 :: f (a -> b -> c -> d -> e -> g) -> f a -> f b -> f c -> f d -> f e -> f g Source
unzip6 :: f (a, b, c, d, e, g) -> (f a, f b, f c, f d, f e, f g) Source
class Functor f => Zip7 f where Source
Methods
zipWith7 :: (a -> b -> c -> d -> e -> g -> h -> i) -> f a -> f b -> f c -> f d -> f e -> f g -> f h -> f i Source
zip7 :: f a -> f b -> f c -> f d -> f e -> f g -> f h -> f (a, b, c, d, e, g, h) Source
zap7 :: f (a -> b -> c -> d -> e -> g -> h) -> f a -> f b -> f c -> f d -> f e -> f g -> f h Source
unzip7 :: f (a, b, c, d, e, g, h) -> (f a, f b, f c, f d, f e, f g, f h) Source
Instances
Zip7 [] |