| Operator | Description | 
                  
      | operator - | Returns the substraction of two time values. | 
      | operator != | Returns whether two time values are different. | 
      | operator * | Returns the multiplication of two time values. | 
      | operator / | A time value divided by a floating point amount. | 
      | operator + | Returns the addition of two time values. | 
      | operator < | Returns whether the left-hand time value is less than the right-hand one. | 
      | operator == | Returns true if the time is equal to a given time, false otherwise. | 
      | operator > | Returns whether left-hand time value is greater than the right-hand one. | 
      | RationalTime | Converts a DiscreteTime to a RationalTime representation. This conversion is always lossless. | 
      | Unknown operator | Returns whether the left-hand time value is less than or equal to the right-hand one. | 
      | Unknown operator | Returns whether the left-hand time value is greater than or equal to the right-hand one. | 
      | Unknown operator | Returns the modulus of two time values. |