Type alias DivisionBehavior

DivisionBehavior: "floor" | "round" | "ceil"

How to handle remainder when dividing integers.

  • floor: Round down to nearest integer.
  • round: Round to nearest integer.
  • ceil: Round up to nearest integer.