Module
Yoga.Tree
- Package
- purescript-yoga-tree
- Repository
- rowtype-yoga/purescript-yoga-tree
#scanTreeAccum Source
scanTreeAccum :: forall a b c. (a -> b -> Accum b c) -> b -> Tree a -> Tree c
Scan a Tree
, accumulating values of b
there are constant across Node
s
that have the same parent, and returning a Tree
of type c
.
#setNodeValue Source
setNodeValue :: forall a. a -> Tree a -> Tree a
Set the value of a node.
#modifyNodeValue Source
modifyNodeValue :: forall a. (a -> a) -> Tree a -> Tree a
Modify the value of a node.
- Modules
- Yoga.
Tree - Yoga.
Tree. Zipper