|
Unit Conversion and Dimensional Analysis Library 3.6.1
A compile-time, header-only C++23 dimensional-analysis library
|
Defines the binary prefix manipulators from kibi to exbi. More...
| template<ConversionFactorType Cf> | |
| using | units::kibi = typename detail::prefix<std::ratio<1024>, Cf>::type |
| < Represents the type of class Cf with the metric 'exa' prefix appended. | |
| template<ConversionFactorType Cf> | |
| using | units::mebi = typename detail::prefix<std::ratio<1048576>, Cf>::type |
| < Represents the type of class Cf with the binary 'kibi' prefix appended. | |
| template<ConversionFactorType Cf> | |
| using | units::gibi = typename detail::prefix<std::ratio<1073741824>, Cf>::type |
| < Represents the type of class Cf with the binary 'mibi' prefix appended. | |
| template<ConversionFactorType Cf> | |
| using | units::tebi = typename detail::prefix<std::ratio<1099511627776>, Cf>::type |
| < Represents the type of class Cf with the binary 'gibi' prefix appended. | |
| template<ConversionFactorType Cf> | |
| using | units::pebi = typename detail::prefix<std::ratio<1125899906842624>, Cf>::type |
| < Represents the type of class Cf with the binary 'tebi' prefix appended. | |
| template<ConversionFactorType Cf> | |
| using | units::exbi = typename detail::prefix<std::ratio<1152921504606846976>, Cf>::type |
| < Represents the type of class Cf with the binary 'pebi' prefix appended. | |
Defines the binary prefix manipulators from kibi to exbi.
| using units::exbi = typename detail::prefix<std::ratio<1152921504606846976>, Cf>::type |
< Represents the type of class Cf with the binary 'pebi' prefix appended.
E.g. pebi<bytes> represents bytes*2^50
| Cf | unit type to apply the prefix to. |
| using units::gibi = typename detail::prefix<std::ratio<1073741824>, Cf>::type |
< Represents the type of class Cf with the binary 'mibi' prefix appended.
E.g. mebi<bytes> represents bytes*2^20
| Cf | unit type to apply the prefix to. |
| using units::kibi = typename detail::prefix<std::ratio<1024>, Cf>::type |
< Represents the type of class Cf with the metric 'exa' prefix appended.
E.g. exa<meters> represents meters*10^18
| Cf | unit type to apply the prefix to. |
| using units::mebi = typename detail::prefix<std::ratio<1048576>, Cf>::type |
< Represents the type of class Cf with the binary 'kibi' prefix appended.
E.g. kibi<bytes> represents bytes*2^10
| Cf | unit type to apply the prefix to. |
| using units::pebi = typename detail::prefix<std::ratio<1125899906842624>, Cf>::type |
< Represents the type of class Cf with the binary 'tebi' prefix appended.
E.g. tebi<bytes> represents bytes*2^40
| Cf | unit type to apply the prefix to. |
| using units::tebi = typename detail::prefix<std::ratio<1099511627776>, Cf>::type |
< Represents the type of class Cf with the binary 'gibi' prefix appended.
E.g. gibi<bytes> represents bytes*2^30
| Cf | unit type to apply the prefix to. |