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 / BITXOR.json @ 44053

History | View | Annotate | Download (555 Bytes)

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