Function outOfBounds [src]
Prototype
pub fn outOfBounds(index: usize, len: usize) noreturn Parameters
index: usizelen: usize Source
pub fn outOfBounds(index: usize, len: usize) noreturn {
_ = index;
_ = len;
call("index out of bounds", null);
}