afterData abstract method

S afterData(
  1. S current,
  2. T data
)

Returns an updated version of the current summary following a data event.

Sub-classes must override this method to specify how the current summary is combined with the new data item in the fold computation.

Implementation

S afterData(S current, T data);