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

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

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

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

A two-argument (binary) curried function.

Parameters

Parameter Type
a A
b? undefined

Returns

Curried1<B, Return>