-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy patheq.json
More file actions
157 lines (157 loc) · 4.6 KB
/
eq.json
File metadata and controls
157 lines (157 loc) · 4.6 KB
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
155
156
157
{
"id": "eq",
"summary": "Equal to comparison",
"description": "Compares whether `x` is strictly equal to `y`.\n\n**Remarks:**\n\n* Data types MUST be checked strictly. For example, a string with the content *1* is not equal to the number *1*. Nevertheless, an integer *1* is equal to a floating-point number *1.0* as `integer` is a sub-type of `number`.\n* If any operand is a no-data value, the result will be the no-data value (or `null`).\n* The comparison of `NaN` (not a number) follows [IEEE Standard 754](https://ieeexplore.ieee.org/document/8766229).\n* Temporal strings are normal strings. To compare temporal strings as dates/times, use ``date_difference()``.",
"categories": [
"texts",
"comparison"
],
"parameters": [
{
"name": "x",
"description": "First operand.",
"schema": {
"type": [
"number",
"boolean",
"string",
"null"
]
}
},
{
"name": "y",
"description": "Second operand.",
"schema": {
"type": [
"number",
"boolean",
"string",
"null"
]
}
},
{
"name": "delta",
"description": "Only applicable for comparing two numbers. If this optional parameter is set to a positive non-zero number the equality of two numbers is checked against a delta value. This is especially useful to circumvent problems with floating-point inaccuracy in machine-based computation.\n\nThis option is basically an alias for the following computation: `lte(abs(minus([x, y]), delta)`",
"schema": {
"type": [
"number",
"null"
],
"minimumExclusive": 0
},
"default": null,
"optional": true
},
{
"name": "case_sensitive",
"description": "Only applicable for comparing two strings. Case sensitive comparison can be disabled by setting this parameter to `false`.",
"schema": {
"type": "boolean"
},
"default": true,
"optional": true
}
],
"returns": {
"description": "`true` if `x` is equal to `y`, the no-data value (or `null`) if any operand is a no-data value, otherwise `false`.",
"schema": {
"type": [
"boolean",
"null"
]
}
},
"examples": [
{
"arguments": {
"x": 1,
"y": null
},
"returns": null
},
{
"arguments": {
"x": 1,
"y": 1
},
"returns": true
},
{
"arguments": {
"x": 1,
"y": "1"
},
"returns": false
},
{
"arguments": {
"x": 0,
"y": false
},
"returns": false
},
{
"arguments": {
"x": 1.02,
"y": 1,
"delta": 0.01
},
"returns": false
},
{
"arguments": {
"x": -1,
"y": -1.001,
"delta": 0.01
},
"returns": true
},
{
"arguments": {
"x": 115,
"y": 110,
"delta": 10
},
"returns": true
},
{
"arguments": {
"x": "Test",
"y": "test"
},
"returns": false
},
{
"arguments": {
"x": "Test",
"y": "test",
"case_sensitive": false
},
"returns": true
},
{
"arguments": {
"x": "Ä",
"y": "ä",
"case_sensitive": false
},
"returns": true
},
{
"arguments": {
"x": "2018-01-01T00:00:00Z",
"y": "2018-01-01T00:00:00+00:00"
},
"returns": false
}
],
"links": [
{
"rel": "about",
"href": "https://ieeexplore.ieee.org/document/4610935",
"title": "IEEE Standard 754-2008 for Floating-Point Arithmetic"
}
]
}