Added currentAbove/Below, highestMax functions.

This commit is contained in:
Lucian Grosu
2014-03-04 09:40:15 +01:00
parent 5221db5aa6
commit 6664890381

View File

@@ -206,6 +206,20 @@ function (_) {
defaultParams: [25]
});
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,
@@ -220,6 +234,13 @@ function (_) {
defaultParams: [5]
});
addFuncDef({
name: 'highestMax',
category: categories.Filter,
params: [ { name: "count", type: "int" } ],
defaultParams: [5]
});
addFuncDef({
name: 'lowestCurrent',
category: categories.Filter,