operator + method

PFileLoader operator +(
  1. FileOf strategy
)

Implementation

PFileLoader operator +(FileOf strategy) {
  if (!_strategies.contains(strategy)) {
    _strategies.add(strategy);
  }
  return this;
}