-
Notifications
You must be signed in to change notification settings - Fork 16
/
mod.json
95 lines (95 loc) · 2.57 KB
/
mod.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
{
"id": "mod",
"summary": "Modulo",
"description": "Remainder after a division of `x` by `y` for both integers and floating-point numbers.\n\nThe result of a modulo operation has the sign of the divisor. The handling regarding the sign of the result [differs between programming languages](https://en.wikipedia.org/wiki/Modulo_operation#In_programming_languages) and needs careful consideration to avoid unexpected results.\n\nThe no-data value `null` is passed through and therefore gets propagated if any of the arguments is `null`. A modulo by zero results in ±infinity if the processing environment supports it. Otherwise, a `DivisionByZero` exception must the thrown.",
"categories": [
"math"
],
"parameters": [
{
"name": "x",
"description": "A number to be used as the dividend.",
"schema": {
"type": [
"number",
"null"
]
}
},
{
"name": "y",
"description": "A number to be used as the divisor.",
"schema": {
"type": [
"number",
"null"
]
}
}
],
"returns": {
"description": "The remainder after division.",
"schema": {
"type": [
"number",
"null"
]
}
},
"exceptions": {
"DivisionByZero": {
"message": "Division by zero is not supported."
}
},
"examples": [
{
"arguments": {
"x": 27,
"y": 5
},
"returns": 2
},
{
"arguments": {
"x": -27,
"y": 5
},
"returns": 3
},
{
"arguments": {
"x": 3.14,
"y": -2
},
"returns": -0.86
},
{
"arguments": {
"x": -27,
"y": -5
},
"returns": -2
},
{
"arguments": {
"x": 27,
"y": null
},
"returns": null
},
{
"arguments": {
"x": null,
"y": 5
},
"returns": null
}
],
"links": [
{
"rel": "about",
"href": "https://en.wikipedia.org/wiki/Modulo_operation",
"title": "Modulo explained by Wikipedia"
}
]
}