SIMD "TypedArray.map" suggestion

Hello. I suggest for typed arrays make map with SIMD support. And this “map” make new array. Also array can be any length.

float32arr.mapSIMD(function(float4, offset, array){
  //some SIMD operations
  return float4; //equal "store" operation 
});

This post is more appropriate for ES Discuss.