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

History | View | Annotate | Download (552 Bytes)

1
{
2
    "name": "BITOR",
3
    "group": "Numeric",
4
    "template": "BITOR({{expr1}}, expr2)",
5
    "args": [
6
      "expr1 - the fisrt argument",
7
      "expr2 - the second argument"
8
    ],
9
    "description": [
10
      "The BITOR function treats its inputs and its output as vectors of bits; the output is the bitwise OR 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
}