-
Notifications
You must be signed in to change notification settings - Fork 17
/
between.json
154 lines (154 loc) · 4.32 KB
/
between.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
{
"id": "between",
"summary": "Between comparison",
"description": "By default, this process checks whether `x` is greater than or equal to `min` and lower than or equal to `max`, which is the same as computing `and(gte(x, min), lte(x, max))`. Therefore, all definitions from ``and()``, ``gte()`` and ``lte()`` apply here as well.\n\nIf `exclude_max` is set to `true` the upper bound is excluded so that the process checks whether `x` is greater than or equal to `min` and lower than `max`. In this case, the process works the same as computing `and(gte(x, min), lt(x, max))`.\n\nLower and upper bounds are not allowed to be swapped. So `min` MUST be lower than or equal to `max` or otherwise the process always returns `false`.",
"categories": [
"comparison"
],
"parameters": [
{
"name": "x",
"description": "The value to check.",
"schema": {
"description": "Any data type is allowed."
}
},
{
"name": "min",
"description": "Lower boundary (inclusive) to check against.",
"schema": {
"type": "number"
}
},
{
"name": "max",
"description": "Upper boundary (inclusive) to check against.",
"schema": {
"type": "number"
}
},
{
"name": "exclude_max",
"description": "Exclude the upper boundary `max` if set to `true`. Defaults to `false`.",
"schema": {
"type": "boolean"
},
"default": false,
"optional": true
}
],
"returns": {
"description": "`true` if `x` is between the specified bounds, otherwise `false`.",
"schema": {
"type": [
"boolean",
"null"
]
}
},
"examples": [
{
"arguments": {
"x": null,
"min": 0,
"max": 1
},
"returns": null
},
{
"arguments": {
"x": 1,
"min": 0,
"max": 1
},
"returns": true
},
{
"arguments": {
"x": 1,
"min": 0,
"max": 1,
"exclude_max": true
},
"returns": false
},
{
"description": "Swapped bounds (min is greater than max) MUST always return `false`.",
"arguments": {
"x": 0.5,
"min": 1,
"max": 0
},
"returns": false
},
{
"arguments": {
"x": -0.5,
"min": -1,
"max": 0
},
"returns": true
}
],
"process_graph": {
"gte": {
"process_id": "gte",
"arguments": {
"x": {
"from_parameter": "x"
},
"y": {
"from_parameter": "min"
}
}
},
"lte": {
"process_id": "lte",
"arguments": {
"x": {
"from_parameter": "x"
},
"y": {
"from_parameter": "max"
}
}
},
"lt": {
"process_id": "lt",
"arguments": {
"x": {
"from_parameter": "x"
},
"y": {
"from_parameter": "max"
}
}
},
"if": {
"process_id": "if",
"arguments": {
"value": {
"from_parameter": "exclude_max"
},
"accept": {
"from_node": "lte"
},
"reject": {
"from_node": "lt"
}
}
},
"and": {
"process_id": "and",
"arguments": {
"x": {
"from_node": "gte"
},
"y": {
"from_node": "if"
}
},
"result": true
}
}
}