pub open spec fn spec_range_inclusive_is_empty<Idx: PartialOrd<Idx>>(
r: &RangeInclusive<Idx>,
) -> boolExpand description
{ !r@.start.is_le(&r@.end) || r@.exhausted }pub open spec fn spec_range_inclusive_is_empty<Idx: PartialOrd<Idx>>(
r: &RangeInclusive<Idx>,
) -> bool{ !r@.start.is_le(&r@.end) || r@.exhausted }