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