Return the smallest value in the tree according to the given order.
import {from, of, minimumNode} from 'effect-tree'import {Number} from 'effect'const tree = from(100, of(10), from(1_000, of(1)))expect(minimumNode(Number.Order)(tree)).toBe(1) Copy
import {from, of, minimumNode} from 'effect-tree'import {Number} from 'effect'const tree = from(100, of(10), from(1_000, of(1)))expect(minimumNode(Number.Order)(tree)).toBe(1)
Return the smallest value in the tree according to the given order.