函数
|
const
BaseTime
|
operator*
(const
BaseTime
&t1, const
BaseTime
&t2)
|
const
BaseTime
|
operator/
(const
BaseTime
&t1, const
BaseTime
&t2)
|
const
BaseTime
|
operator+
(const
BaseTime
&t1, const
BaseTime
&t2)
|
const
BaseTime
|
operator-
(const
BaseTime
&t1, const
BaseTime
&t2)
|
Bool
|
operator==
(const
BaseTime
&t1, const
BaseTime
&t2)
|
Bool
|
operator<
(const
BaseTime
&t1, const
BaseTime
&t2)
|
Bool
|
operator!=
(const
BaseTime
&t1, const
BaseTime
&t2)
|
Bool
|
operator<=
(const
BaseTime
&t1, const
BaseTime
&t2)
|
Bool
|
operator>=
(const
BaseTime
&t1, const
BaseTime
&t2)
|
Bool
|
operator>
(const
BaseTime
&t1, const
BaseTime
&t2)
|
Function Documentation
◆
operator*()
Multiplies
t1
and
t2
.
-
参数
-
[in]
|
t1
|
Left-operand time.
|
[in]
|
t2
|
Right-operand time.
|
-
返回
-
Result of the multiplication.
◆
operator/()
Divides
t1
and
t2
.
-
参数
-
[in]
|
t1
|
Left-operand time.
|
[in]
|
t2
|
Right-operand time.
|
-
返回
-
Result of the division.
◆
operator+()
Adds
t1
and
t2
.
-
参数
-
[in]
|
t1
|
Left-operand time.
|
[in]
|
t2
|
Right-operand time.
|
-
返回
-
Result of the addition.
◆
operator-()
Subtracts
t1
and
t2
.
-
参数
-
[in]
|
t1
|
Left-operand time.
|
[in]
|
t2
|
Right-operand time.
|
-
返回
-
Result of the subtraction.
◆
operator==()
Equality operator. Checks if
t1
and
t2
are equal.
-
参数
-
[in]
|
t1
|
Left-operand time.
|
[in]
|
t2
|
Right-operand time.
|
-
返回
-
Result of the comparison.
◆
operator<()
Less than operator. Checks if
t1
is less than
t2
.
-
参数
-
[in]
|
t1
|
Left-operand time.
|
[in]
|
t2
|
Right-operand time.
|
-
返回
-
Result of the comparison.
◆
operator!=()
Inequality operator. Checks if
t1
and
t2
are not equal.
-
参数
-
[in]
|
t1
|
Left-operand time.
|
[in]
|
t2
|
Right-operand time.
|
-
返回
-
Result of the comparison.
◆
operator<=()
Less than or equal operator. Checks if
t1
is less than or equal to
t2
.
-
参数
-
[in]
|
t1
|
Left-operand time.
|
[in]
|
t2
|
Right-operand time.
|
-
返回
-
Result of the comparison.
◆
operator>=()
Greater than or equal operator. Checks if
t1
is greater than or equal to
t2
.
-
参数
-
[in]
|
t1
|
Left-operand time.
|
[in]
|
t2
|
Right-operand time.
|
-
返回
-
Result of the comparison.
◆
operator>()
Greater than operator. Checks if
t1
大于
t2
.
-
参数
-
[in]
|
t1
|
Left-operand time.
|
[in]
|
t2
|
Right-operand time.
|
-
返回
-
Result of the comparison.