template<typename type_t>
class xtd::box_floating_point< type_t >
Represents a boxed floating point object.
Represents a boxed floating point object.
Definition box_floating_point.h:41
Represents a boxed object.
Definition box.h:53
- Inheritance
- xtd::object → xtd::box <type_t> → xtd::box_integer <type_t> → box_floating_point <type_t>
- Header
#include <xtd/box°floating_point>
- Namespace
- xtd
- Library
- xtd.core
- Examples
- The following example shows how to create and use xtd::box_floating_point<float>.
auto stringer = [](
const object&
value) {
return value.to_string();};
float unboxed_object = 3.14f;
auto result = stringer(boxed_object);
const type_t & value() const noexcept
Gets the underlying value.
Definition box.h:85
static void write_line()
Writes the current line terminator to the standard output stream using the specified format informati...
|
static bool | is_finite (type_t value) noexcept |
| Determines whether the specified value is finite (zero, subnormal, or normal).
|
|
static bool | is_infinity (type_t value) noexcept |
| Returns a value indicating whether the specified number evaluates to negative or positive infinity.
|
|
static bool | is_negative_infinity (type_t value) noexcept |
| Returns a value indicating whether the specified number evaluates to negative infinity.
|
|
static bool | is_positive_infinity (type_t value) noexcept |
| Returns a value indicating whether the specified number evaluates to positive infinity.
|
|
static bool | is_NaN (type_t value) noexcept |
| Returns a value indicating whether the specified number evaluates to not a number.
|
|
|
using | underlying_type = type_t |
|
static constexpr type_t | max_value |
| Represents the largest possible value of type_t. This field is constant.
|
|
static constexpr type_t | min_value |
| Represents the smallest possible value of type_t. This field is constant.
|
|
| box ()=default |
| Initialize a new xtd::box object.
|
|
| box (const type_t &value) |
| Initialize a new xtd::box object with specified value.
|
|
template<typename ... args_t> |
| box (args_t &&...args) |
| Initialize a new xtd::box object with specified value.
|
|
const type_t & | value () const noexcept |
| Gets the underlying value.
|
|
type_t & | value () noexcept |
| Gets the underlying value.
|
|
box & | value (const type_t &value) |
| Sets de underlying value.
|
|
| operator type_t () const noexcept |
|
int32 | compare_to (const box &value) const noexcept override |
| Compares the current instance with another object of the same type.
|
|
bool | equals (const object &obj) const noexcept override |
| Determines whether the specified object is equal to the current object.
|
|
bool | equals (const box &value) const noexcept override |
| Indicates whether the current object is equal to another object of the same type.
|
|
xtd::string | to_string () const noexcept override |
| Returns a xtd::string that represents the current object.
|
|
xtd::string | to_string (const xtd::string &format) const |
| Converts the value of this instance to its equivalent string representation, using the specified format.
|
|
xtd::string | to_string (const xtd::string &format, const std::locale &loc) const override |
| Converts the value of this instance to its equivalent string representation, using the specified format, and locale.
|
|
| object ()=default |
| Create a new instance of the ultimate base class object.
|
|
virtual size_t | get_hash_code () const noexcept |
| Serves as a hash function for a particular type.
|
|
virtual type_object | get_type () const noexcept |
| Gets the type of the current instance.
|
|
template<typename object_t > |
xtd::uptr< object_t > | memberwise_clone () const |
| Creates a shallow copy of the current object.
|
|
static type_t | parse (const xtd::string &value, xtd::number_styles styles) |
| Converts the string to its type_t equivalent.
|
|
static bool | parse (const xtd::string &value, type_t &result, xtd::number_styles styles) |
| Converts the string to its type_t equivalent.
|
|
static type_t | parse (const xtd::string &value) |
| Converts the string to its type_t equivalent.
|
|
static bool | try_parse (const xtd::string &value, type_t &result) noexcept |
| Converts the string to its type_t equivalent. A return value indicates whether the conversion succeeded or failed.
|
|
template<typename object_a_t , typename object_b_t > |
static bool | equals (const object_a_t &object_a, const object_b_t &object_b) noexcept |
| Determines whether the specified object instances are considered equal.
|
|
template<typename object_a_t , typename object_b_t > |
static bool | reference_equals (const object_a_t &object_a, const object_b_t &object_b) noexcept |
| Determines whether the specified object instances are the same instance.
|
|