Add the 'not' operator to Fun primitives
This commit is contained in:
parent
0a0af17124
commit
0ff9052a81
1 changed files with 5 additions and 0 deletions
|
@ -3,6 +3,7 @@ return {
|
|||
compose: compose,
|
||||
defined: defined,
|
||||
id: id,
|
||||
not: not,
|
||||
insert: insert,
|
||||
map: map,
|
||||
mapFilter: mapFilter,
|
||||
|
@ -32,6 +33,10 @@ function id(x) {
|
|||
return x;
|
||||
}
|
||||
|
||||
function not(x) {
|
||||
return !x;
|
||||
}
|
||||
|
||||
function insert(obj, t, comparer, min, max) {
|
||||
min = defined(min) ? min : 0;
|
||||
max = defined(max) ? max : t.length;
|
||||
|
|
Loading…
Reference in a new issue