(O: Order<A>)
| 1729 | * @since 2.0.0 |
| 1730 | */ |
| 1731 | export const getOrder = <A>(O: Order<A>): Order<Option<A>> => |
| 1732 | order.make((self, that) => isSome(self) ? (isSome(that) ? O(self.value, that.value) : 1) : -1) |
| 1733 | |
| 1734 | /** |
| 1735 | * Lifts a binary function to work with `Option` values, allowing the function |