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

◆ uintptr_object

Represent a boxed uintptr.

Namespace
xtd
Library
xtd.core
Remarks
For more information about types, see Native types, boxing and unboxing.
Examples
The following example shows how to create and use xtd::uintptr_object.
auto stringer = [](const object& value) {return value.to_string();};
uintptr unboxed_object = 42;
uintptr_object boxed_object = unboxed_object;
auto result = stringer(boxed_object);
console::write_line("result = {}", result); // Display: result = 42;
static void write_line()
Writes the current line terminator to the standard output stream using the specified format informati...
uintmax_t uintptr
Represent a pointer or a handle.
Definition uintptr.h:23
box_integer< uintptr > uintptr_object
Represent a boxed uintptr.
Definition uintptr_object.h:29