mutate<R> method

R mutate<R>(
  1. R block(
    1. T it
    )
)

Implementation

R mutate<R>(R Function(T it) block) {
  final result = block(value);
  notify();
  return result;
}