Interface: Curried3()<A, B, C, Return>

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

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:130

A three-argument curried function.

Parameters

Parameter Type
a A
b B
c C

Returns

Return

Call Signature

Curried3(a: A, b: B): Curried1<C, Return>

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

A three-argument curried function.

Parameters

Parameter Type
a A
b B

Returns

Curried1<C, Return>

Call Signature

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

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

A three-argument curried function.

Parameters

Parameter Type
a A

Returns

Curried2<B, C, Return>

Properties

[$boundArguments]

[$boundArguments]: unknown[]

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


[$unapplied]

[$unapplied]: AnyFunction

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


displayName

displayName: string

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