Commit 0a561e5a by Niku Toivola

allow multiple params for sumSeriesWithWildcards

parent 1591a486
......@@ -157,7 +157,12 @@ function (_) {
addFuncDef({
name: 'sumSeriesWithWildcards',
category: categories.Combine,
params: [{ name: "node", type: "int" }],
params: [
{ name: "node", type: "int" },
{ name: "node", type: "int", optional: true },
{ name: "node", type: "int", optional: true },
{ name: "node", type: "int", optional: true }
],
defaultParams: [3]
});
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment