Unsigned

checkedint-aware wrapper for std.traits.Unsigned

template Unsigned (
T
) {}

Examples

static assert(is(Unsigned!int == uint));
static assert(is(Unsigned!(SmartInt!int) == SmartInt!uint));
static assert(is(Unsigned!ulong == ulong));
static assert(is(Unsigned!(SmartInt!ulong) == SmartInt!ulong));

Meta