Add the 'not' operator to Fun primitives

This commit is contained in:
Tissevert 2021-01-07 21:35:48 +01:00
parent 0a0af17124
commit 0ff9052a81
1 changed files with 5 additions and 0 deletions

View File

@ -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;