[][src]Function gba::divrem_u32_unchecked

pub unsafe fn divrem_u32_unchecked(numer: u32, denom: u32) -> (u32, u32)

Performs divide and remainder, no check for 0 division.

Safety

If you call this with a denominator of 0 the result is implementation defined (not literal UB) including but not limited to: an infinite loop, panic on overflow, or incorrect output.