Interface: Curried3()<A, B, C, Return>
Defined in: pkg/curry/src/index.ts:132
A three-argument curried function.
Type Parameters
Type Parameter | Description |
---|---|
A |
the type of f 's first argument |
B |
the type of f 's second argument |
C |
the type of f 's third argument |
Return |
the return type of f |
Call Signature
Curried3(
a
:A
,b
:B
,c
:C
):Return
Defined in: pkg/curry/src/index.ts:133
A three-argument curried function.
Parameters
Parameter | Type |
---|---|
a |
A |
b |
B |
c |
C |
Returns
Return
Call Signature
Curried3(
a
:A
,b
:B
,c?
:undefined
):Curried1
<C
,Return
>
Defined in: pkg/curry/src/index.ts:134
A three-argument curried function.
Parameters
Parameter | Type |
---|---|
a |
A |
b |
B |
c? |
undefined |
Returns
Curried1
<C
, Return
>
Call Signature
Curried3(
a
:A
,b?
:undefined
,c?
:undefined
):Curried2
<B
,C
,Return
>
Defined in: pkg/curry/src/index.ts:135
A three-argument curried function.
Parameters
Parameter | Type |
---|---|
a |
A |
b? |
undefined |
c? |
undefined |
Returns
Curried2
<B
, C
, Return
>
Properties
[$unapplied]
[$unapplied]:
AnyFunction
Defined in: pkg/curry/src/index.ts:138
displayName
displayName:
string
Defined in: pkg/curry/src/index.ts:136
Methods
[$getBoundArguments]()
[$getBoundArguments]():
unknown
[]
Defined in: pkg/curry/src/index.ts:137
Returns
unknown
[]