/** * `AssociativeIdentity` that returns last min of elements. * * @tsplus static AssociativeIdentity/Ops min */ export function min(B: Bounded): AssociativeIdentity { return AssociativeIdentity(B.top, Associative.min(B).combine) }