set method

void set(
  1. K key,
  2. V item
)

Implementation

void set(K key, V item) {
  add(MapDiff.set(args, key, item));
}