std::ratio< _Num, _Den > Struct Template Reference
[Rational Arithmetic]
Provides compile-time rational arithmetic.
More...
List of all members.
Public Member Functions
-
static_assert (_Num >=-__INTMAX_MAX__ &&_Den >=-__INTMAX_MAX__,"out of range")
-
static_assert (_Den!=0,"denominator cannot be zero")
Static Public Attributes
-
static const intmax_t den
-
static const intmax_t num
Detailed Description
template<intmax_t _Num, intmax_t _Den = 1>
struct std::ratio< _Num, _Den >
Provides compile-time rational arithmetic.
This class template represents any finite rational number with a numerator and denominator representable by compile-time constants of type intmax_t. The ratio is simplified when instantiated.
For example:
Definition at line 151 of file ratio.
The documentation for this struct was generated from the following file: