Perform the operation of AND bitwise (bit by bit) for two integers in absolute value.

1 math.and

<math.and>
    <number /> +
    <number /> +
</math.and>
Example

The value of the operation of AND bitwise.

Copy
<xsql-script name='math_and'>
    <body>
        <println>
            <math.and>
                <number>5</number>
                <number>3</number>
            </math.and>
        </println>
    </body>
</xsql-script>