(O: Order<A>)
| 310 | * @since 2.0.0 |
| 311 | */ |
| 312 | export const max = <A>(O: Order<A>): { |
| 313 | (that: A): (self: A) => A |
| 314 | (self: A, that: A): A |
| 315 | } => dual(2, (self: A, that: A) => self === that || O(self, that) > -1 ? self : that) |
| 316 | |
| 317 | /** |
| 318 | * Clamp a value between a minimum and a maximum. |
no outgoing calls
no test coverage detected