mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
16 lines
456 B
Plaintext
16 lines
456 B
Plaintext
{
|
|
"name": "<=",
|
|
"type": "operator",
|
|
"groups": ["Operators"],
|
|
"description": "Compares two values and evaluates to 1 if the left value is less or equal than the right value.",
|
|
"arguments": [
|
|
{ "arg": "a", "description": "value" },
|
|
{ "arg": "b", "description": "value" }
|
|
],
|
|
"examples": [
|
|
{ "expression":"5 <= 4", "returns":"0"},
|
|
{ "expression":"5 <= 5", "returns":"1"},
|
|
{ "expression":"4 <= 5", "returns":"1"}
|
|
]
|
|
}
|