class
TimeSpanContents
Represents a time span
Constructors, destructors, conversion operators
Public functions
- auto operator+(const TimeSpan& other) const -> TimeSpan noexcept
- auto operator-(const TimeSpan& other) const -> TimeSpan noexcept
- auto operator>(const TimeSpan& other) const -> bool noexcept
- auto operator<(const TimeSpan& other) const -> bool noexcept
- auto operator<=(const TimeSpan& other) const -> bool noexcept
- auto operator>=(const TimeSpan& other) const -> bool noexcept
- auto operator==(const TimeSpan& other) const -> bool noexcept
- auto operator!=(const TimeSpan& other) const -> bool noexcept
- void operator+=(const TimeSpan& other) noexcept
- void operator-=(const TimeSpan& other) noexcept
Public variables
Function documentation
bool bpf:: system:: TimeSpan:: operator<=(const TimeSpan& other) const noexcept
Parameters | |
---|---|
other | operand |
Returns | true if this is less than or equal to other, false otherwise |
Compare TimeSpan
bool bpf:: system:: TimeSpan:: operator>=(const TimeSpan& other) const noexcept
Parameters | |
---|---|
other | operand |
Returns | true if this is less than or equal to other, false otherwise |
Compare TimeSpan
bool bpf:: system:: TimeSpan:: operator==(const TimeSpan& other) const noexcept
Parameters | |
---|---|
other | operand |
Returns | true if this is equal to other, false otherwise |
Compare TimeSpan
bool bpf:: system:: TimeSpan:: operator!=(const TimeSpan& other) const noexcept
Parameters | |
---|---|
other | operand |
Returns | true if this is not equal to other, false otherwise |
Compare TimeSpan
void bpf:: system:: TimeSpan:: operator+=(const TimeSpan& other) noexcept
Parameters | |
---|---|
other | the other TimeSpan to add |
Adds a TimeSpan
void bpf:: system:: TimeSpan:: operator-=(const TimeSpan& other) noexcept
Parameters | |
---|---|
other | the other TimeSpan to subtract |
Subtracts a TimeSpan
Variable documentation
uint64 bpf:: system:: TimeSpan:: TotalSeconds
Total time contained in this span expressed as a number of seconds