Interface: Curried5()<A, B, C, D, E, Return>

Defined in: pkg/curry/src/index.ts:213

A five-argument curried function.

Extends

Type Parameters

Type Parameter Description
A the type of the function's first argument
B the type of the function's second argument
C the type of the function's third argument
D the type of the function's fourth argument
E the type of the function's fifth argument
Return the function's return type

Call Signature

Curried5(a: A, b: B, c: C, d: D, e: E): Return

Defined in: pkg/curry/src/index.ts:214

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, e?: undefined): Curried1<E, Return>

Defined in: pkg/curry/src/index.ts:215

A five-argument curried function.

Parameters

Parameter Type
a A
b B
c C
d D
e? undefined

Returns

Curried1<E, Return>

Call Signature

Curried5(a: A, b: B, c: C, d?: undefined, e?: undefined): Curried2<D, E, Return>

Defined in: pkg/curry/src/index.ts:216

A five-argument curried function.

Parameters

Parameter Type
a A
b B
c C
d? undefined
e? undefined

Returns

Curried2<D, E, Return>

Call Signature

Curried5(a: A, b: B, c?: undefined, d?: undefined, e?: undefined): Curried3<C, D, E, Return>

Defined in: pkg/curry/src/index.ts:217

A five-argument curried function.

Parameters

Parameter Type
a A
b B
c? undefined
d? undefined
e? undefined

Returns

Curried3<C, D, E, Return>

Call Signature

Curried5(a: A, b?: undefined, c?: undefined, d?: undefined, e?: undefined): Curried4<B, C, D, E, Return>

Defined in: pkg/curry/src/index.ts:219

A five-argument curried function.

Parameters

Parameter Type
a A
b? undefined
c? undefined
d? undefined
e? undefined

Returns

Curried4<B, C, D, E, Return>