Sha256: 5318c01234887d3facab9c726cbbffd6d911cc5cc6107f05737700e99db7861c

Contents?: true

Size: 606 Bytes

Versions: 1

Compression:

Stored size: 606 Bytes

Contents

module Humanize
  class Exa < Bytes
    def to_b
      Byte.new @value * 1024 * 1024 * 1024 * 1024 * 1024 * 1024
    end

    def to_k
      Kilo.new @value * 1024 * 1024 * 1024 * 1024 * 1024
    end

    def to_m
      Mega.new @value * 1024 * 1024 * 1024 * 1024
    end

    def to_g
      Giga.new @value * 1024 * 1024 * 1024
    end

    def to_t
      Tera.new @value * 1024 * 1024
    end

    def to_p
      Peta.new @value * 1024
    end

    def to_e
      self
    end

    def to_z
      Zetta.new @value / 1024.0
    end

    def to_y
      Yotta.new @value / 1024.0 / 1024.0
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
humanize-bytes-2.2.0 lib/humanize/exa.rb