xtd 0.2.0
Loading...
Searching...
No Matches

◆ as() [2/52]

template<typename new_type_t >
new_type_t xtd::as ( std::any  value)

Casts a type into another type.

Parameters
valueobject to convert.
Returns
A new bool object converted from value.
Exceptions
xtd::invalid_cast_exceptionthe parameters is bad cast.
Header
#include <xtd/as>
Namespace
xtd
Library
xtd.core
Examples
std::any value = 42;
int result = as<int>(value);