forEach method

view source

void forEach (void action(K key, V value)) inherited

Implementation

void forEach(void action(K key, V value)) {
  for (K key in keys) {
    action(key, this[key] as V);
  }
}