10 #include <unordered_map>
14 extern std::unordered_map<std::type_index, std::function<std::string(std::any
const&)>> __any_stringer__;
16 template<
class type_t,
class function_t>
17 inline std::pair<
const std::type_index, std::function<std::string(std::any
const&)>> __to_any_stringer__(function_t
const &
func) {
19 std::type_index(
typeid(type_t)),
20 [
f =
func](std::any
const &value)->std::string {
21 if constexpr (std::is_void_v<type_t>)
return f();
22 else return f(std::any_cast<const type_t&>(value));
40 template<
class type_t,
class function_t>
42 __any_stringer__.insert(__to_any_stringer__<type_t>(
func));
Represents a delegate, which is a data structure that refers to a static method or to a class instanc...
Definition: delegate.h:236
void register_any_stringer(const function_t &func)
Register an any stringer method for a specified type.
Definition: any.h:41
delegate< result_t(arguments_t...)> func
Represents a delegate that has variables parameters and returns a value of the type specified by the ...
Definition: func.h:17
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition: system_report.h:17