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

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

A four-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
Return the return type of f

Call Signature

Curried4(a: A, b: B, c: C, d: D): Return

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

A four-argument curried function.

Parameters

Parameter Type
a A
b B
c C
d D

Returns

Return

Call Signature

Curried4(a: A, b: B, c: C): Curried1<D, Return>

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

A four-argument curried function.

Parameters

Parameter Type
a A
b B
c C

Returns

Curried1<D, Return>

Call Signature

Curried4(a: A, b: B): Curried2<C, D, Return>

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

A four-argument curried function.

Parameters

Parameter Type
a A
b B

Returns

Curried2<C, D, Return>

Call Signature

Curried4(a: A): Curried3<B, C, D, Return>

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

A four-argument curried function.

Parameters

Parameter Type
a A

Returns

Curried3<B, C, D, Return>

Properties

[$boundArguments]

[$boundArguments]: unknown[]

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


[$unapplied]

[$unapplied]: AnyFunction

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


displayName

displayName: string

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