jsbean / Collections

Collection data structures

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add mapLeaves to Tree

jsbean opened this issue · comments

extension Tree {
    func mapLeaves <T> (_ transform: (Leaf) -> T) -> Tree<Branch,T> {
         ...
    }
}