structural-traversal-0.1.1.1: Initial project template from stack

Safe HaskellSafe
LanguageHaskell2010

Data.StructuralTraversal.Class

Documentation

class StructuralTraversable t where Source #

Minimal complete definition

traverseUp, traverseDown

Methods

traverseUp :: Applicative f => f () -> f () -> (a -> f b) -> t a -> f (t b) Source #

traverseDown :: Applicative f => f () -> f () -> (a -> f b) -> t a -> f (t b) Source #