Unary operators.
static assert(+UVW8(1,2,3) == UVW8(1,2,3)); static assert(-UVW8(1,2,3) == UVW8(-1,-2,-3)); static assert(~RGB8(1,2,3) == RGB8(0xFE,0xFD,0xFC)); static assert(~UVW8(1,2,3) == UVW8(~1,~2,~3));
See Implementation
Unary operators.