Numeric Math Functions Oracle PLSQL

SQL> -- BITAND(x, y): Returns the result of performing a bitwise AND on x and y.
SQL>
SQL> select BITAND(0, 0) from dual;
BITAND(0,0)
-----------
          0
SQL>