DoxigAlpha

startGreaterThanEnd

Function parameters

Parameters

#
start:usize
end:usize

Prints the message to stderr without a newline and then traps.

Functions

#
call
Prints the message to stderr without a newline and then traps.

Source

Implementation

#
pub fn startGreaterThanEnd(start: usize, end: usize) noreturn {
    _ = start;
    _ = end;
    call("start index is larger than end index", null);
}