#include <time.hpp>
Definition at line 11 of file time.hpp.
◆ microseconds()
fc::microseconds::microseconds |
( |
int64_t | c = 0 | ) |
|
|
inlineexplicitconstexpr |
◆ count()
int64_t fc::microseconds::count |
( |
| ) |
const |
|
inlineconstexpr |
◆ maximum()
Definition at line 14 of file time.hpp.
constexpr microseconds(int64_t c=0)
◆ operator!=()
bool fc::microseconds::operator!= |
( |
const microseconds & | c | ) |
const |
|
inlineconstexpr |
Definition at line 19 of file time.hpp.
19{ return _count != c._count; }
◆ operator+=()
Definition at line 24 of file time.hpp.
24{ _count += c._count; return *this; }
◆ operator-=()
Definition at line 25 of file time.hpp.
25{ _count -= c._count; return *this; }
◆ operator==()
bool fc::microseconds::operator== |
( |
const microseconds & | c | ) |
const |
|
inlineconstexpr |
Definition at line 18 of file time.hpp.
18{ return _count == c._count; }
◆ to_seconds()
int64_t fc::microseconds::to_seconds |
( |
| ) |
const |
|
inlineconstexpr |
Definition at line 27 of file time.hpp.
27{ return _count/1000000; }
◆ operator+
◆ operator-
◆ operator<
Definition at line 22 of file time.hpp.
22{
return a._count < b._count; }
const GenericPointer< typename T::ValueType > T2 T::AllocatorType & a
◆ operator<=
Definition at line 23 of file time.hpp.
23{
return a._count <= b._count; }
◆ operator>
Definition at line 20 of file time.hpp.
20{
return a._count > b._count; }
◆ operator>=
Definition at line 21 of file time.hpp.
21{
return a._count >= b._count; }
◆ time_point
The documentation for this class was generated from the following file: