Skip to content

Function4COps<T0, T1, T2, T3, T4>

extension Function4COps<T0, T1, T2, T3, T4> on T4 Function(T3) Function(T2) Function(T1) Function(T0)

Provides additional functions on curried functions with 4 parameters.

Properties

uncurried extension no setter

T4 Function(T0, T1, T2, T3) get uncurried

Return the uncurried form of this function.

Available on Function4C<T0, T1, T2, T3, T4>, provided by the Function4COps<T0, T1, T2, T3, T4> extension

Implementation
dart
Function4<T0, T1, T2, T3, T4> get uncurried => (t0, t1, t2, t3) => this(t0)(t1)(t2)(t3);