map<T> method

T map<T>(
  1. T mapper(
    1. Float32x4 e
    )
)

Map using mapper.

Implementation

T map<T>(T Function(Float32x4 e) mapper) => mapper(this);