mapIt<T, R> method

R mapIt<T, R>(
  1. R apply(
    1. dynamic it
    )
)

apply mapping with T as dynamic parameter and R as return value

Implementation

R mapIt<T, R>(R Function(dynamic it) apply) => apply(this);