Page 1 of 1

Round() - Make #PB_Round_Nearest default

Posted: Wed Feb 27, 2013 4:30 pm
by c4s
Feature request: Make #PB_Round_Nearest the default rounding mode for the Round() function.

Right now we always have to type this:

Code: Select all

Debug Round(1.5, #PB_Round_Nearest)
However, this would be less to type and still easy to understand as rounding to the nearest value is generally the most desired behavoir:

Code: Select all

Debug Round(1.5)