(value: A, forest: Forest<A> = [])
| 1724 | } |
| 1725 | |
| 1726 | const makeTree = <A>(value: A, forest: Forest<A> = []): Tree<A> => ({ |
| 1727 | value, |
| 1728 | forest |
| 1729 | }) |
| 1730 | |
| 1731 | /** |
| 1732 | * @category formatting |
no outgoing calls
no test coverage detected
searching dependent graphs…