mapInPlace method

void mapInPlace(
  1. E toElement(
    1. E
    )
)

Implementation

void mapInPlace(E Function(E) toElement) {
  for (var i = 0; i < value.length; i++) {
    this[i] = toElement(value[i]);
  }
  _notifyListeners();
}