Метод remainder
- BigInt other
Возвращает остаток от деления this на other.
Результат r этой операции удовлетворяет условию: this == (this ~/ other) * other + r. Вследствие этого остаток r имеет тот же знак, что и делитель this.
Пример:
print(BigInt.from(5).remainder(BigInt.from(3))); // 2 print(BigInt.from(-5).remainder(BigInt.from(3))); // -2 print(BigInt.from(5).remainder(BigInt.from(-3))); // 2 print(BigInt.from(-5).remainder(BigInt.from(-3))); // -2
Реализация
BigInt remainder(BigInt other);
© 2012 the Dart project authors
Licensed under the BSD 3-Clause "New" or "Revised" License.
https://api.dart.dev/stable/2.18.5/dart-core/BigInt/remainder.html