Wraps floating (double) value with some helper functions.
More...
#include <Double.h>
|
bool | operator== (const Double &x, const Double &y) noexcept |
| Equality comparison operator. More...
|
|
bool | operator!= (const Double &x, const Double &y) noexcept |
| Inequality comparison operator. More...
|
|
bool | operator< (const Double &x, const Double &y) noexcept |
| Comparison operator. More...
|
|
bool | operator<= (const Double &x, const Double &y) noexcept |
| Comparison operator. More...
|
|
bool | operator> (const Double &x, const Double &y) noexcept |
| Comparison operator. More...
|
|
bool | operator>= (const Double &x, const Double &y) noexcept |
| Comparison operator. More...
|
|
constexpr Double | operator+ (const Double &x, const Double &y) |
| Addition operator. More...
|
|
constexpr Double | operator- (const Double &x, const Double &y) |
| Substraction operator. More...
|
|
constexpr Double | operator* (const Double &x, const Double &y) |
| Multiplication operator. More...
|
|
constexpr Double | operator/ (const Double &x, const Double &y) |
| Division operator. More...
|
|
Wraps floating (double) value with some helper functions.
Definition at line 31 of file Double.h.
bool Mdt::Numeric::Double::isNaN |
( |
| ) |
const |
|
inlinenoexcept |
Check if value is NaN.
Internally, std::isnan() is used
Definition at line 101 of file Double.h.
bool Mdt::Numeric::Double::isNull |
( |
| ) |
const |
|
inlinenoexcept |
constexpr Double Mdt::Numeric::Double::operator- |
( |
| ) |
const |
|
inline |
Negation operator.
Note:
- If current value is null, a null value will be returned (Same rule as IEEE 754 NaN)
- For all other cases, standard floating point arithmetic rules apply
Definition at line 223 of file Double.h.
constexpr double Mdt::Numeric::Double::toDouble |
( |
| ) |
const |
|
inlinenoexcept |
Get Double value.
Returns the value in standard double format. The name was choosen to be explicit, but no convertion is done.
Definition at line 51 of file Double.h.
Multiplication operator.
Note:
- If one (or both) value is null, a null value will be returned (Same rule as IEEE 754 NaN)
- For all other cases, standard floating point arithmetic rules apply
Definition at line 235 of file Double.h.
Addition operator.
Note:
- If one (or both) value is null, a null value will be returned (Same rule as IEEE 754 NaN)
- For all other cases, standard floating point arithmetic rules apply
Definition at line 200 of file Double.h.
Substraction operator.
Note:
- If one (or both) value is null, a null value will be returned (Same rule as IEEE 754 NaN)
- For all other cases, standard floating point arithmetic rules apply
Definition at line 212 of file Double.h.
Division operator.
Note:
- If one (or both) value is null, a null value will be returned (Same rule as IEEE 754 NaN)
- For all other cases, standard floating point arithmetic rules apply
Definition at line 247 of file Double.h.
Comparison operator.
Note: if one (or both) value is null, comparison will allways be false (Same rule as IEEE 754 NaN)
Definition at line 155 of file Double.h.
Comparison operator.
Note: if one (or both) value is null, comparison will allways be false (Same rule as IEEE 754 NaN)
Definition at line 166 of file Double.h.
Equality comparison operator.
The comparison is a approximation. x and y are considered equal if 
Notes:
- if one (or both) value is null, they are not considered equal (Same rule as IEEE 754 NaN)
Definition at line 131 of file Double.h.
Comparison operator.
Note: if one (or both) value is null, comparison will allways be false (Same rule as IEEE 754 NaN)
Definition at line 177 of file Double.h.
Comparison operator.
Note: if one (or both) value is null, comparison will allways be false (Same rule as IEEE 754 NaN)
Definition at line 188 of file Double.h.
The documentation for this class was generated from the following file: