User`s guide

APPENDIX A Function Reference
Users Guide 127
Parameters numeric value
A list of numeric arguments.
Examples To find the highest value from a set of values:
uMin(1, 6, 4, -6) // returns -6
uMin("b", "A", "a") // returns "A"
uMin("2004-05_02", "2006-12-12", "1999-05-30") //
returns "1999-05-30"
Bit functions
uBitAnd
Description Calculates the bitwise AND over all parameters given and returns the result.
Syntax number uBitAnd(value, ...)
Parameters
numeric value
A list of numeric arguments.
Examples uBitAnd(10, 3) // returns "2"
uBitOr
Description Calculates the bitwise OR over all parameters given and returns the result.
Syntax number uBitOr(value, ...)
Parameters
numeric value
A list of numeric arguments.
Examples uBitOR(10, 3) // returns "11"