38 template<class type_t>
42 template<
class type_t>
46 template<
class type_t>
121 template<class type_t>
123 template<
class type_t,
class ...args_t>
173 template<
class type_t,
class bool_t>
174 struct __is_enum_any_object__ {};
176 template<
class type_t>
177 struct __is_enum_any_object__<type_t, std::true_type> {
178 bool operator()(
const any_object& o)
const {
return is<enum_object<type_t>>(
o.value());}
181 template<
class type_t>
182 struct __is_enum_any_object__<type_t, std::false_type> {
183 bool operator()(
const any_object& o)
const {
return false;}
186 template<
class type_t,
class bool_t>
187 struct __is_polymorphic_any_object__ {};
189 template<
class type_t>
190 struct __is_polymorphic_any_object__<type_t, std::true_type> {
191 bool operator()(
const any_object& o)
const {
return is<type_t>(
o.value());}
194 template<
class type_t>
195 struct __is_polymorphic_any_object__<type_t, std::false_type> {
196 bool operator()(
const any_object& o)
const {
return __is_enum_any_object__<type_t, typename std::is_enum<type_t>::type> {}(
o);}
199 template<
class type_t>
200 requires (!std::is_null_pointer_v<type_t> && (!std::integral<type_t> || std::same_as<type_t, bool>))
202 if (!
o.has_value())
return false;
204 return __is_polymorphic_any_object__<type_t, typename std::is_polymorphic<type_t>::type > {}(
o);
207 template<
class type_t>
208 requires (!std::is_null_pointer_v<type_t> && (!std::integral<type_t> || std::same_as<type_t, bool>))
210 if (!
o.has_value())
return false;
212 return __is_polymorphic_any_object__<type_t, typename std::is_polymorphic<type_t>::type > {}(
o);
215 template<
class type_t>
216 requires (!std::is_null_pointer_v<type_t> && std::integral<type_t> && !std::same_as<type_t, bool>)
218 if (!
o.has_value())
return false;
232 template<
class type_t>
233 requires (!std::is_null_pointer_v<type_t> && std::integral<type_t> && !std::same_as<type_t, bool>)
235 if (!
o.has_value())
return false;
249 template<
class type_t>
250 requires std::is_null_pointer_v<type_t>
252 return !
o.has_value();
255 template<
class type_t>
256 requires std::is_null_pointer_v<type_t>
258 return !
o.has_value();
261 template<
class type_t>
264 return __is_polymorphic_any_object__<type_t, typename std::is_polymorphic<type_t>::type > {}(*o);
267 template<
class type_t>
270 return __is_polymorphic_any_object__<type_t, typename std::is_polymorphic<type_t>::type > {}(*o);
Contains xtd::boxing methods.
Represent a polymorphic wrapper capable of holding any type.
Definition any_object.hpp:29
any_object(const type_t &value) noexcept
Initializes a new instance of the xtd::any_object class with specified value.
Definition any_object.hpp:47
any_object(type_t &value) noexcept
Initializes a new instance of the xtd::any_object class with specified value.
Definition any_object.hpp:43
string to_string() const noexcept override
Returns a xtd::string that represents the current object.
bool equals(const object &other) const noexcept override
Determines whether the specified object is equal to the current object.
void reset() noexcept
Reset the current object. Set the current object to null.
bool has_value() const noexcept
Gets a value indicating whether the current xtd::any_object object has a valid value of its underlyin...
any_object() noexcept=default
Initializes a new instance of the xtd::any_object class.
int32 compare_to(const any_object &other) const noexcept override
Compares the current instance with another object of the same type.
xtd::size get_hash_code() const noexcept override
Serves as a hash function for a particular type.
const object & value() const
Gets the value of the current xtd::any_object object if it has been assigned a valid underlying value...
static bool is_valid(std::signed_integral auto value) noexcept
Determines whether the specified signed integral value is within the range of type_t.
Definition box_integer.hpp:89
Defines a generalized comparison method that a value type or class implements to create a type-specif...
Definition icomparable.hpp:22
Defines a generalized method that a value type or class implements to create a type-specific method f...
Definition iequatable.hpp:23
object()=default
Create a new instance of the ultimate base class object.
Contains xtd::enum_object struct.
Contains xtd::collections::generic::helpers::comparer struct.
std::type_info type
Stores information about a type.
Definition type.hpp:23
std::int64_t int64
Represents a 64-bit signed integer.
Definition int64.hpp:23
std::uint32_t uint32
Represents a 32-bit unsigned integer.
Definition uint32.hpp:23
size_t size
Represents a size of any object in bytes.
Definition size.hpp:23
char8_t char8
Represents a 8-bit unicode character.
Definition char8.hpp:26
__slong__ slong
Represents a 32-bit or 64-bit signed integer.
Definition slong.hpp:27
std::int8_t sbyte
Represents a 8-bit signed integer.
Definition sbyte.hpp:23
wchar_t wchar
Represents a wide character.
Definition wchar.hpp:24
__ulong__ ulong
Represents a 32-bit or 64-bit unsigned integer.
Definition ulong.hpp:27
long double decimal
Represents a decimal-precision floating-point number.
Definition decimal.hpp:23
std::uint16_t uint16
Represents a 16-bit unsigned integer.
Definition uint16.hpp:23
char16_t char16
Represents a 16-bit unicode character.
Definition char16.hpp:26
std::int32_t int32
Represents a 32-bit signed integer.
Definition int32.hpp:23
xtd::sptr< type_t > ptr
The xtd::ptr object is a shared pointer.
Definition ptr.hpp:27
std::int16_t int16
Represents a 16-bit signed integer.
Definition int16.hpp:23
std::uint64_t uint64
Represents a 64-bit unsigned integer.
Definition uint64.hpp:23
std::uint8_t byte
Represents a 8-bit unsigned integer.
Definition byte.hpp:23
char32_t char32
Represents a 32-bit unicode character.
Definition char32.hpp:23
ptr< type_t > new_ptr(args_t &&... args)
The xtd::new_ptr operator creates a xtd::ptr object.
Definition new_ptr.hpp:24
bool is(xtd::any value)
Checks if the result of an expression is compatible with a given type.
Definition is.hpp:484
@ other
The operating system is other.
Definition platform_id.hpp:60
@ o
The O key.
Definition console_key.hpp:116
Contains xtd::icomparable interface.
Contains xtd::iequatable interface.
Contains xtd::invalid_operation_exception exception.
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition abstract_object.hpp:8
Contains xtd::object class.
Represents a boxed object.
Definition box.hpp:56