LPCounter.opOpAssign

Merges a set of LPCounters into this one.

  1. void opOpAssign(LPCounter counter)
  2. void opOpAssign(Range counters)
    struct LPCounter
    void
    opOpAssign
    (
    string op : "+"
    Range
    )
    (
    Range counters
    )
    if (
    isIterable!Range &&
    (
    is(ForeachType!Range : const(LPCounter)) ||
    is(ForeachType!Range : const(LPCounter)*)
    )
    )

Parameters

counters Range

An iterable set of counters. All counters must have the same sizes as this counter.

Meta