(B: Bounded<A>)
| 44 | * @since 0.24.0 |
| 45 | */ |
| 46 | export const max = <A>(B: Bounded<A>): Monoid<A> => fromSemigroup(semigroup.max(B.compare), B.minBound) |
| 47 | |
| 48 | /** |
| 49 | * The dual of a `Monoid`, obtained by swapping the arguments of `combine`. |
nothing calls this directly
no test coverage detected