The class template std::ratio and associated templates provide compile-time rational arithmetic support. Each instantiation of this template exactly represents any finite rational number.
| Defined in header <ratio> | |
|---|---|
| (C++11) | represents exact rational fraction (class template) | 
Several convenience typedefs that correspond to the SI ratios are provided by the standard library:
| Defined in header <ratio> | |
|---|---|
| Type | Definition | 
| yocto | std::ratio<1, 1000000000000000000000000>, ifstd::intmax_tcan represent the denominator | 
| zepto | std::ratio<1, 1000000000000000000000>, ifstd::intmax_tcan represent the denominator | 
| atto | std::ratio<1, 1000000000000000000> | 
| femto | std::ratio<1, 1000000000000000> | 
| pico | std::ratio<1, 1000000000000> | 
| nano | std::ratio<1, 1000000000> | 
| micro | std::ratio<1, 1000000> | 
| milli | std::ratio<1, 1000> | 
| centi | std::ratio<1, 100> | 
| deci | std::ratio<1, 10> | 
| deca | std::ratio<10, 1> | 
| hecto | std::ratio<100, 1> | 
| kilo | std::ratio<1000, 1> | 
| mega | std::ratio<1000000, 1> | 
| giga | std::ratio<1000000000, 1> | 
| tera | std::ratio<1000000000000, 1> | 
| peta | std::ratio<1000000000000000, 1> | 
| exa | std::ratio<1000000000000000000, 1> | 
| zetta | std::ratio<1000000000000000000000, 1>, ifstd::intmax_tcan represent the numerator | 
| yotta | std::ratio<1000000000000000000000000, 1>, ifstd::intmax_tcan represent the numerator | 
Several alias templates, that perform arithmetic operations on ratio objects at compile-time are provided.
| Defined in header <ratio> | |
|---|---|
| (C++11) | adds two ratioobjects at compile-time(alias template) | 
| (C++11) | subtracts two ratioobjects at compile-time(alias template) | 
| (C++11) | multiplies two ratioobjects at compile-time(alias template) | 
| (C++11) | divides two ratioobjects at compile-time(alias template) | 
Several class templates, that perform comparison operations on ratio objects at compile-time are provided.
| Defined in header <ratio> | |
|---|---|
| (C++11) | compares two ratioobjects for equality at compile-time(class template) | 
| (C++11) | compares two ratioobjects for inequality at compile-time(class template) | 
| (C++11) | compares two ratioobjects for less than at compile-time(class template) | 
| (C++11) | compares two ratioobjects for less than or equal to at compile-time(class template) | 
| (C++11) | compares two ratioobjects for greater than at compile-time(class template) | 
| (C++11) | compares two ratioobjects for greater than or equal to at compile-time(class template) | 
    © cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
    https://en.cppreference.com/w/cpp/numeric/ratio