|
frequency 1.0.0
Type-safe frequency handling library modeled after std::chrono
|
Standard integer-based frequency types using int64_t representation. More...
Typedefs | |
| using | freq::millihertz = frequency< int64_t, std::milli > |
| Frequency with 0.001 Hz (millihertz) precision. | |
| using | freq::hertz = frequency< int64_t > |
| Frequency with 1 Hz precision. | |
| using | freq::kilohertz = frequency< int64_t, std::kilo > |
| Frequency with 1000 Hz (kilohertz) precision. | |
| using | freq::megahertz = frequency< int64_t, std::mega > |
| Frequency with 1,000,000 Hz (megahertz) precision. | |
| using | freq::gigahertz = frequency< int64_t, std::giga > |
| Frequency with 1,000,000,000 Hz (gigahertz) precision. | |
| using | freq::terahertz = frequency< int64_t, std::tera > |
| Frequency with 1,000,000,000,000 Hz (terahertz) precision. | |
Standard integer-based frequency types using int64_t representation.
For floating-point representations, use frequency<double, Precision>.
| using freq::gigahertz = typedef frequency<int64_t, std::giga> |
Frequency with 1,000,000,000 Hz (gigahertz) precision.
Definition at line 1096 of file frequency.hpp.
Frequency with 1 Hz precision.
Definition at line 1090 of file frequency.hpp.
| using freq::kilohertz = typedef frequency<int64_t, std::kilo> |
Frequency with 1000 Hz (kilohertz) precision.
Definition at line 1092 of file frequency.hpp.
| using freq::megahertz = typedef frequency<int64_t, std::mega> |
Frequency with 1,000,000 Hz (megahertz) precision.
Definition at line 1094 of file frequency.hpp.
| using freq::millihertz = typedef frequency<int64_t, std::milli> |
Frequency with 0.001 Hz (millihertz) precision.
Definition at line 1088 of file frequency.hpp.
| using freq::terahertz = typedef frequency<int64_t, std::tera> |
Frequency with 1,000,000,000,000 Hz (terahertz) precision.
Definition at line 1098 of file frequency.hpp.