Module Sequence.Infix
val (--) : int -> int -> int t
a -- b
is the range of integers froma
tob
, both included, in increasing order. It will therefore be empty ifa > b
.
val (--^) : int -> int -> int t
a --^ b
is the range of integers fromb
toa
, both included, in decreasing order (starts froma
). It will therefore be empty ifa < b
.