Math functions
multiply
Commentary
added in 0.0.17
Generates the multiplication of args
. You can also use this function through an infix math
expression.
Examples
Multiplying numbers
{
"_gen": "multiply",
"args": [
1003,
463
]
}
[
464389
]
Specification
JSON schema
{
"type": "object",
"properties": {
"args": {
"oneOf": [
{
"type": "array",
"minItems": 1
},
{
"type": "object",
"properties": {
"_gen": {
"type": "string"
}
},
"required": [
"_gen"
]
}
]
}
},
"required": [
"args"
]
}