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

◆ uint64_object

Represent a boxed uint64.

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::uint64_object.
auto stringer = [](const object& value) {return value.to_string();};
uint64 unboxed_object = 42;
uint64_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...
box_integer< uint64 > uint64_object
Represent a boxed uint64.
Definition uint64_object.h:29
uint64_t uint64
Represents a 64-bit unsigned integer.
Definition uint64.h:23