Interface: Curried2()<A, B, Return>
Defined in: pkg/curry/src/index.ts:109
A two-argument (binary) curried function.
Type Parameters
Type Parameter | Description |
---|---|
A |
the type of f 's first argument |
B |
the type of f 's second argument |
Return |
the return type of f |
Call Signature
Curried2(
a
:A
,b
:B
):Return
Defined in: pkg/curry/src/index.ts:110
A two-argument (binary) curried function.
Parameters
Parameter | Type |
---|---|
a |
A |
b |
B |
Returns
Return
Call Signature
Curried2(
a
:A
):Curried1
<B
,Return
>
Defined in: pkg/curry/src/index.ts:111
A two-argument (binary) curried function.
Parameters
Parameter | Type |
---|---|
a |
A |
Returns
Curried1
<B
, Return
>
Properties
[$boundArguments]
[$boundArguments]:
unknown
[]
Defined in: pkg/curry/src/index.ts:113
[$unapplied]
[$unapplied]:
AnyFunction
Defined in: pkg/curry/src/index.ts:114
displayName
displayName:
string
Defined in: pkg/curry/src/index.ts:112