Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
556 B
Plaintext
Raw Normal View History

{
"name": "min",
"type": "function",
2020-07-02 01:46:48 +01:00
"groups": ["Math"],
"description": "Returns the smallest value in a set of values.",
"variableLenArguments": true,
"arguments": [{
"arg": "value1",
"syntaxOnly": true
}, {
"arg": "value2",
"syntaxOnly": true
}, {
"arg": "value",
"descOnly": true,
"description": "a number"
}],
"examples": [{
"expression": "min(20.5,10,6.2)",
"returns": "6.2"
}, {
"expression": "min(2,-10.3,NULL)",
"returns": "-10.3"
}],
"tags": ["least", "smallest", "minimum"]
}