Spec-Zone.ru › Dart 1

dart:core

метод оператор ~/

Duration оператор ~/(int quotient)

Делит эту Duration на заданный quotient и возвращает усеченное значение в виде нового объекта Duration.

Выбрасывает исключение IntegerDivisionByZeroException, если quotient равно 0.

Исходный код

Duration operator ~/(int quotient) {
  // By doing the check here instead of relying on "~/" below we get the
  // exception even with dart2js.
  if (quotient == 0) throw new IntegerDivisionByZeroException();
  return new Duration._microseconds(_duration ~/ quotient);
}

© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dartlang.org/stable/1.24.3/dart-core/Duration/operator_truncate_divide.html

Spec-Zone.ru

Настройки Оффлайн Что нового Помощь О нас
Spec-Zone .ru
спецификации, руководства, описания, API