Interface: Curried2()<A, B, Return>

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

A two-argument (binary) 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
Return the function's return type

Call Signature

Curried2(a: A, b: B): Return

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

A two-argument (binary) curried function.

Parameters

Parameter Type
a A
b B

Returns

Return

Call Signature

Curried2(a: A, b?: undefined): Curried1<B, Return>

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

A two-argument (binary) curried function.

Parameters

Parameter Type
a A
b? undefined

Returns

Curried1<B, Return>