operator + method

Period operator +(
  1. Period other
)

Returns a new Period that is the sum of this and other.

Implementation

Period operator +(Period other) {
  return Period._microseconds(_period + other._period);
}