class Numeric

def exabytes

2.exabytes # => 2_305_843_009_213_693_952

Returns the number of bytes equivalent to the exabytes provided.
def exabytes
  self * EXABYTE
end