6#define __XTD_CORE_INTERNAL__ 
    8#undef __XTD_CORE_INTERNAL__ 
   40  template<
typename type_t>
 
   56    static constexpr type_t 
epsilon = __get_epsilon(type_t{});
 
   59    static constexpr type_t 
NaN = std::numeric_limits<type_t>::quiet_NaN();
 
Contains internal math methods.
 
Contains xtd::box_integer class.
 
Represents a boxed floating point object.
Definition box_floating_point.hpp:41
 
static bool is_finite(type_t value) noexcept
Determines whether the specified value is finite (zero, subnormal, or normal).
Definition box_floating_point.hpp:74
 
static constexpr type_t epsilon
Represents the smallest positive type_t value greater than zero. This field is constant.
Definition box_floating_point.hpp:56
 
static bool is_NaN(type_t value) noexcept
Returns a value indicating whether the specified number evaluates to not a number.
Definition box_floating_point.hpp:93
 
static constexpr type_t NaN
Represents not a number (NaN). This field is constant.
Definition box_floating_point.hpp:59
 
static bool is_positive_infinity(type_t value) noexcept
Returns a value indicating whether the specified number evaluates to positive infinity.
Definition box_floating_point.hpp:88
 
static bool is_infinity(type_t value) noexcept
Returns a value indicating whether the specified number evaluates to negative or positive infinity.
Definition box_floating_point.hpp:78
 
static constexpr type_t positive_infinity
Represents positive infinity. This field is constant.
Definition box_floating_point.hpp:65
 
static bool is_negative_infinity(type_t value) noexcept
Returns a value indicating whether the specified number evaluates to negative infinity.
Definition box_floating_point.hpp:83
 
static constexpr type_t negative_infinity
Represents negative infinity. This field is constant.
Definition box_floating_point.hpp:62
 
Represents a boxed integer object.
Definition box_integer.hpp:52
 
const type_t & value() const noexcept
Gets the underlying value.
Definition box.hpp:85
 
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.hpp:10