(O: Order<A>)
| 798 | * @since 2.0.0 |
| 799 | */ |
| 800 | export const min = <A>(O: Order<A>): { |
| 801 | (that: A): (self: A) => A |
| 802 | (self: A, that: A): A |
| 803 | } => dual(2, (self: A, that: A) => self === that || O(self, that) < 1 ? self : that) |
| 804 | |
| 805 | /** |
| 806 | * Returns the maximum of two values according to the given order. If they are equal, returns the first argument. |
no test coverage detected