( compare: (self: A, that: A) => -1 | 0 | 1 )
| 40 | * @since 2.0.0 |
| 41 | */ |
| 42 | export const make = <A>( |
| 43 | compare: (self: A, that: A) => -1 | 0 | 1 |
| 44 | ): Order<A> => |
| 45 | (self, that) => self === that ? 0 : compare(self, that) |
| 46 | |
| 47 | /** |
| 48 | * @category instances |