Esempio n. 1
0
	bool operator >=(Time left, Time right)
	{
		return left.AsMicroseconds() >= right.AsMicroseconds();
	}
Esempio n. 2
0
	bool operator <(Time left, Time right)
	{
		return left.AsMicroseconds() < right.AsMicroseconds();
	}
Esempio n. 3
0
bool operator ==(const Time& left, const Time& right)
{
    return left.AsMicroseconds() == right.AsMicroseconds();
}
Esempio n. 4
0
Time operator /(const Time& left, Int64 right)
{
    return Microseconds(left.AsMicroseconds() / right);
}
Esempio n. 5
0
Time operator -(const Time& left, const Time& right)
{
    return Microseconds(left.AsMicroseconds() - right.AsMicroseconds());
}
Esempio n. 6
0
Time operator -(const Time& right)
{
    return Microseconds(-right.AsMicroseconds());
}