UNPKG
@prelude/function
Version:
latest (0.4.1)
0.4.1
0.4.0
0.3.0
0.2.0
0.1.0
0.0.3
Function module.
@prelude/function
/
mjs
/
implies.d.ts
4 lines
(3 loc)
•
165 B
TypeScript
View Raw
1
2
3
4
import
type
{
Predicate
}
from
'./prelude.js'
;
declare
const
implies
: <T, U>
(
a
:
Predicate
<T>,
b
:
Predicate
<U>
) =>
(
value
: T & U
) =>
boolean
;
export
default
implies;