bit/div.fjΒΆ

View source on GitHub

MacrosΒΆ

bitΒΆ

  • bit.div10 β€” dst[:n], src[:n] = src[:n] / 10, src[:n] % 10.

  • bit.idiv β€” @NOTE: a,b are SIGNED numbers. If you want a division with unsigned ints, use the div macro.

  • bit.div β€” @NOTE: a,b are UNSIGNED numbers. If you want a division with signed ints, use the idiv macro.

  • bit.idiv_loop β€” @NOTE: a,b are SIGNED numbers. If you want a division with unsigned ints, use the div_loop macro.

  • bit.div_loop β€” @NOTE: a,b are UNSIGNED numbers. If you want a division with signed ints, use the idiv_loop macro.

bit.div10ΒΆ

bit.divΒΆ