addAll method

void addAll(
  1. Iterable<Perception> perceptions
)

Adds multiple perceptions at once.

Implementation

void addAll(Iterable<Perception> perceptions) {
  for (final p in perceptions) {
    add(p);
  }
}