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