Intervals in ℤ #
THIS FILE IS SYNCHRONIZED WITH MATHLIB4. Any changes to this file require a corresponding PR to mathlib4.
This file defines integer ranges. range m n
is the set of integers greater than m
and strictly
less than n
.
Note #
This could be unified with data.list.intervals
. See the TODOs there.
@[protected, instance]
Equations
- int.decidable_lt_lt P m n = int.decidable_le_lt P (m + 1) n
@[protected, instance]
Equations
- int.decidable_lt_le P m n = int.decidable_le_le P (m + 1) n