subtract method

ByteSize subtract(
  1. ByteSize bs
)

Returns the difference of two ByteSize objects.

Implementation

ByteSize subtract(ByteSize bs) =>
    ByteSize(Bytes - bs.Bytes);