Execute Expression expr inline the same way n times. n must be a constant known at compile time.
int i = 0; doTimes!4(i++); assert(i == 4);
See Implementation
Execute Expression expr inline the same way n times. n must be a constant known at compile time.