operator + method

Time operator +(
  1. Time other
)

Implementation

Time operator +(Time other) {
  return Time.fromSeconds(inSeconds + other.inSeconds);
}