For the complete Mojo documentation index, see llms.txt. Markdown versions of all pages are available by appending .md to any URL (e.g. /docs/manual/basics.md).
ufloordiv
ufloordiv(a: Int, b: Int) -> Int
Perform unsigned floor division (//) on Int arguments.
This function treats both arguments as unsigned values and performs unsigned division, which is faster than signed division on NVIDIA GPUs.
For correctness, both arguments should be non-negative integers.
Args:
Returns:
Int: The quotient of unsigned division.