A simple struct representing a size with only int or double values
auto a = Size!int(10, 10); auto a2 = size(10, 10); auto b = Size!double(5, 5); auto b2 = size(5.0, 5.0); assert(a == a2); assert(b == b2);
See Implementation
A simple struct representing a size with only int or double values