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

History | View | Annotate | Download (851 Bytes)

1
{
2
    "name": "CEIL",
3
    "group": "Numeric",
4
    "template": "CEIL({{number}})",
5
    "args": [
6
        "number - numerica value"
7
    ],
8
    "description": [
9
            "Returns the smallest (closest to negative infinity) double value that is greater than or equal to the argument and is equal to a mathematical integer. Special cases:\n",
10
            "- If the argument value is already equal to a mathematical integer, then the result is the same as the argument.",
11
            "- If the argument is NaN or an infinity or positive zero or negative zero, then the result is the same as the argument.",
12
            "- If the argument value is less than zero but greater than -1.0, then the result is negative zero.",
13
            "Note that the value of Math.ceil(x) is exactly the value of -Math.floor(-x)."
14
          ],
15
    "returnType": "Double"
16
}