SysTime.opBinary
SysTime opBinary(string op)(Duration duration) if (op == "+" || op == "-") @safe const pure nothrow return scopeGives the result of adding or subtracting a Duration from this SysTime.
The legal types of arithmetic for SysTime using this operator are
| SysTime | + | Duration | --> | SysTime |
| SysTime | - | Duration | --> | SysTime |
| Duration | + | SysTime | --> | SysTime |
Parameters
duration | The Duration to add to or subtract from this SysTime. |