class Numeric

def terabytes

2.terabytes # => 2_199_023_255_552

Returns the number of bytes equivalent to the terabytes provided.
def terabytes
  self * TERABYTE
end