map<T> method

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

Map using mapper.

Implementation

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