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

History | View | Annotate | Download (497 Bytes)

1
{
2
    "name": "BITGET",
3
    "group": "Numeric",
4
    "template": "BITGET({{bits}}, nbit)",
5
    "args": [
6
      "bits - a bit set",
7
      "nbit - bit to check"
8
    ],
9
    "description": ["Returns true if and only if the first parameter has a bit set ",
10
        " in the position specified by the second parameter. ",
11
        "This method returns a boolean. ",
12
        "The second parameter is zero-indexed; the least significant ",
13
        "it has position 0"
14
      ],
15
    "returnType": "Boolean"
16
}