Method: Numeric#exabytes

Defined in:
activesupport/lib/active_support/core_ext/numeric/bytes.rb

#exabytesObject Also known as: exabyte

Returns the number of bytes equivalent to the exabytes provided.

2.exabytes # => 2_305_843_009_213_693_952


63
64
65
# File 'activesupport/lib/active_support/core_ext/numeric/bytes.rb', line 63

def exabytes
  self * EXABYTE
end