(B: Bounded<A>)
| 34 | * @since 0.24.0 |
| 35 | */ |
| 36 | export const min = <A>(B: Bounded<A>): Monoid<A> => fromSemigroup(semigroup.min(B.compare), B.maxBound) |
| 37 | |
| 38 | /** |
| 39 | * Get a monoid where `combine` will return the maximum, based on the provided bounded order. |
nothing calls this directly
no test coverage detected