Find max node value in a numeric tree.
import {max, from, of} from 'effect-tree'expect(max(from(1, of(2), from(3, of(4), of(5))))).toBe(5) Copy
import {max, from, of} from 'effect-tree'expect(max(from(1, of(2), from(3, of(4), of(5))))).toBe(5)
Find max node value in a numeric tree.