Loading...
Searching...
No Matches
Time.hpp
Go to the documentation of this file.
7// In no event will the authors be held liable for any damages arising from the use of this software.
Color operator+(const Color &left, const Color &right)
Overload of the binary + operator.
Color operator*(const Color &left, const Color &right)
Overload of the binary * operator.
Color operator-(const Color &left, const Color &right)
Overload of the binary - operator.
Color & operator-=(Color &left, const Color &right)
Overload of the binary -= operator.
Color & operator*=(Color &left, const Color &right)
Overload of the binary *= operator.
Color & operator+=(Color &left, const Color &right)
Overload of the binary += operator.
Int64 asMicroseconds() const
Return the time value as a number of microseconds.
friend Time milliseconds(Int32)
friend Time microseconds(Int64)
Time operator/(Time left, float right)
Overload of binary / operator to scale a time value.
Time & operator%=(Time &left, Time right)
Overload of binary %= operator to compute/assign remainder of a time value.
Time microseconds(Int64 amount)
Construct a time value from a number of microseconds.
Time milliseconds(Int32 amount)
Construct a time value from a number of milliseconds.
Int32 asMilliseconds() const
Return the time value as a number of milliseconds.
Time operator%(Time left, Time right)
Overload of binary % operator to compute remainder of a time value.
friend Time seconds(float)
Time & operator/=(Time &left, float right)
Overload of binary /= operator to scale/assign a time value.
Definition AlResource.hpp:35
bool operator==(const IpAddress &left, const IpAddress &right)
Overload of == operator to compare two IP addresses.
bool operator>=(const IpAddress &left, const IpAddress &right)
Overload of >= operator to compare two IP addresses.
bool operator!=(const IpAddress &left, const IpAddress &right)
Overload of != operator to compare two IP addresses.
bool operator<=(const IpAddress &left, const IpAddress &right)
Overload of <= operator to compare two IP addresses.
bool operator<(const IpAddress &left, const IpAddress &right)
Overload of < operator to compare two IP addresses.
bool operator>(const IpAddress &left, const IpAddress &right)
Overload of > operator to compare two IP addresses.