1 2 3 4 5 6 7 8 9 10 11 12
use core::ops::*; use rebound_proc::extern_items; extern_items! { pub struct Range<Idx> { /// The lower bound of the range (inclusive). pub start: Idx, /// The upper bound of the range (exclusive). pub end: Idx, } }