add method

ByteSize add(
  1. ByteSize bs
)

Returns the sum of two ByteSize objects.

Implementation

ByteSize add(ByteSize bs) => ByteSize(Bytes + bs.Bytes);