operator + method

FileCollection operator +(
  1. FileCollection other
)

Alias operator for the union method.

Implementation

FileCollection operator +(FileCollection other) {
  return union(other);
}