Commit 66648903 by Lucian Grosu

Added currentAbove/Below, highestMax functions.

parent 5221db5a
......@@ -207,6 +207,20 @@ function (_) {
});
addFuncDef({
name: 'currentAbove',
category: categories.Filter,
params: [ { name: "n", type: "int", } ],
defaultParams: [25]
});
addFuncDef({
name: 'currentBelow',
category: categories.Filter,
params: [ { name: "n", type: "int", } ],
defaultParams: [25]
});
addFuncDef({
name: "exclude",
category: categories.Filter,
params: [ { name: "exclude", type: 'string' } ],
......@@ -221,6 +235,13 @@ function (_) {
});
addFuncDef({
name: 'highestMax',
category: categories.Filter,
params: [ { name: "count", type: "int" } ],
defaultParams: [5]
});
addFuncDef({
name: 'lowestCurrent',
category: categories.Filter,
params: [ { name: "count", type: "int" } ],
......
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