addAll method
Adds multiple perceptions at once.
Implementation
void addAll(Iterable<Perception> perceptions) {
for (final p in perceptions) {
add(p);
}
}
Adds multiple perceptions at once.
void addAll(Iterable<Perception> perceptions) {
for (final p in perceptions) {
add(p);
}
}