addAll method

void addAll(
  1. Context<T, K> other
)

Adds all values from other context w/o setting the parent value

Implementation

void addAll(Context<T, K> other) {
  _storage.addAll(other._storage);
}