Petr
I like If Value MOD 1 = 0 -> INTEGER but it remains to be tested whether it's faster or slower than using INT
integer division is rather slow especially when dealing with 64-bit integers
but in this case with a divisor of 1 gives g++ an excellent opportunity to optimize, so the performance is probably good
I like If Value MOD 1 = 0 -> INTEGER but it remains to be tested whether it's faster or slower than using INT
integer division is rather slow especially when dealing with 64-bit integers
but in this case with a divisor of 1 gives g++ an excellent opportunity to optimize, so the performance is probably good