class TTFunk::Aggregate

@see TTFunk::Sum
@see TTFunk::Max
@see TTFunk::Min
Base class for different aggregate values and accumulators.

def coerce(other)

def coerce(other)
  if other.respond_to?(:value_or)
    other.value_or(0)
  else
    other
  end
end