Direct construction of a Fixed struct
auto p1 = Fixed!3.make(1); assert(p1.value == 1); auto p2 = Fixed!3(1); assert(p2.value == 1000);
See Implementation
Direct construction of a Fixed struct