removeAll method

void removeAll(
  1. String key,
  2. Iterable values
)

Atomically remove all values from the array key.

Implementation

void removeAll(String key, Iterable values) {
  if (isNullOrEmpty(key)) {
    throw ArgumentError.notNull('key');
  }
  _LCRemoveOperation op = new _LCRemoveOperation(values);
  _applyOperation(key, op);
}