operator - method

Time operator -(
  1. Time other
)

Subtracts other from this Duration and returns the difference as a new Duration object.

Implementation

Time operator -(Time other) {
  return Time(ticks - other.ticks);
}