Sign in
apache
/
incubator-resilientdb-ResContract
/
a38804e78a872ef90e5cbab1c702c7554a393c9b
/
.
/
node_modules
/
rxjs
/
src
/
internal
/
util
/
not.ts
blob: 5e5d7e2d8fe73bd98b9a9ce321cc2d8a1790773c [
file
] [
log
] [
blame
]
export
function
not
<
T
>(
pred
:
(
value
:
T
,
index
:
number
)
=>
boolean
,
thisArg
:
any
):
(
value
:
T
,
index
:
number
)
=>
boolean
{
return
(
value
:
T
,
index
:
number
)
=>
!
pred
.
call
(
thisArg
,
value
,
index
);
}