Round() - Make #PB_Round_Nearest default
Posted: Wed Feb 27, 2013 4:30 pm
Feature request: Make #PB_Round_Nearest the default rounding mode for the Round() function.
Right now we always have to type this:However, this would be less to type and still easy to understand as rounding to the nearest value is generally the most desired behavoir:
Right now we always have to type this:
Code: Select all
Debug Round(1.5, #PB_Round_Nearest)
Code: Select all
Debug Round(1.5)