iq method

int iq(
  1. int value
)

Performs integer division and returns the quotient.

Implementation

int iq(int value) => this ~/ value;