Interface: Curried5()<A, B, C, D, E, Return>
Defined in: pkg/curry/src/index.ts:175
A five-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 |
D |
the type of f 's fourth argument |
E |
the type of f 's fifth argument |
Return |
the return type of f |
Call Signature
Curried5(
a
:A
,b
:B
,c
:C
,d
:D
,e
:E
):Return
Defined in: pkg/curry/src/index.ts:176
A five-argument curried function.
Parameters
Parameter | Type |
---|---|
a |
A |
b |
B |
c |
C |
d |
D |
e |
E |
Returns
Return
Call Signature
Curried5(
a
:A
,b
:B
,c
:C
,d
:D
):Curried1
<E
,Return
>
Defined in: pkg/curry/src/index.ts:177
A five-argument curried function.
Parameters
Parameter | Type |
---|---|
a |
A |
b |
B |
c |
C |
d |
D |
Returns
Curried1
<E
, Return
>
Call Signature
Curried5(
a
:A
,b
:B
,c
:C
):Curried2
<D
,E
,Return
>
Defined in: pkg/curry/src/index.ts:178
A five-argument curried function.
Parameters
Parameter | Type |
---|---|
a |
A |
b |
B |
c |
C |
Returns
Curried2
<D
, E
, Return
>
Call Signature
Curried5(
a
:A
,b
:B
):Curried3
<C
,D
,E
,Return
>
Defined in: pkg/curry/src/index.ts:179
A five-argument curried function.
Parameters
Parameter | Type |
---|---|
a |
A |
b |
B |
Returns
Curried3
<C
, D
, E
, Return
>
Call Signature
Curried5(
a
:A
):Curried4
<B
,C
,D
,E
,Return
>
Defined in: pkg/curry/src/index.ts:180
A five-argument curried function.
Parameters
Parameter | Type |
---|---|
a |
A |
Returns
Curried4
<B
, C
, D
, E
, Return
>
Properties
[$boundArguments]
[$boundArguments]:
unknown
[]
Defined in: pkg/curry/src/index.ts:182
[$unapplied]
[$unapplied]:
AnyFunction
Defined in: pkg/curry/src/index.ts:183
displayName
displayName:
string
Defined in: pkg/curry/src/index.ts:181