Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.library / org.gvsig.expressionevaluator / org.gvsig.expressionevaluator.lib / org.gvsig.expressionevaluator.lib.impl / src / main / resources / org / gvsig / expressionevaluator / functions / en / BITAND.json @ 44053

History | View | Annotate | Download (550 Bytes)

1
{
2
    "name": "BITAND",
3
    "group": "Numeric",
4
    "template": "BITAND({{expr1}}, expr2)",
5
    "args": [
6
      "expr1 - the fisrt argument",
7
      "expr2 - the second argument"
8
    ],
9
    "description": ["The BITAND function treats its inputs and its output as vectors of bits; the output is the bitwise AND of the inputs.",
10
        "The types of expr1 and expr2 are INTEGER or LONG, and the result is of type INTEGER or LONG.",
11
        "If the types of expr1 or expr2 are not INTEGER or LONG a error is raised."
12
      ],
13
    "returnType": "Long"
14
}