addAll method

void addAll(
  1. PdfDict<T> other
)

Implementation

void addAll(PdfDict<T> other) {
  values.addAll(other.values);
}