Curried function that takes a Right and a Left value and returns a boolean representing a comparison between those values.
Right
Left
boolean
const biggerThan: Comparison<number> = right => left => right > left;
Curried function that takes a
Right
and aLeft
value and returns aboolean
representing a comparison between those values.Example