Function startGreaterThanEnd [src]
Prototype
pub fn startGreaterThanEnd(start: usize, end: usize) noreturn
Parameters
start: usize
end: usize
Source
pub fn startGreaterThanEnd(start: usize, end: usize) noreturn {
_ = start;
_ = end;
call("start index is larger than end index", null);
}