public Accum addInput()

in src/main/java/com/google/solutions/df/log/aggregations/common/AvgCombineFn.java [58:62]


  public Accum addInput(Accum mutableAccumulator, Integer input) {
    mutableAccumulator.sum += input;
    mutableAccumulator.count++;
    return mutableAccumulator;
  }