Class: Gem::Resolv::LOC::Size
- Inherits:
-
Object
- Object
- Gem::Resolv::LOC::Size
- Defined in:
- lib/rubygems/vendor/resolv/lib/resolv.rb
Overview
A Gem::Resolv::LOC::Size
Constant Summary collapse
- Regex =
/^(\d+\.*\d*)[m]$/
Instance Attribute Summary collapse
-
#scalar ⇒ Object
readonly
The raw size.
Class Method Summary collapse
-
.create(arg) ⇒ Object
Creates a new LOC::Size from
arg
which may be:.
Instance Method Summary collapse
-
#==(other) ⇒ Object
:nodoc:.
-
#eql?(other) ⇒ Boolean
:nodoc:.
-
#hash ⇒ Object
:nodoc:.
-
#initialize(scalar) ⇒ Size
constructor
A new instance of Size.
-
#inspect ⇒ Object
:nodoc:.
-
#to_s ⇒ Object
:nodoc:.
Constructor Details
#initialize(scalar) ⇒ Size
Returns a new instance of Size.
3236 3237 3238 |
# File 'lib/rubygems/vendor/resolv/lib/resolv.rb', line 3236 def initialize(scalar) @scalar = scalar end |
Instance Attribute Details
#scalar ⇒ Object (readonly)
The raw size
3243 3244 3245 |
# File 'lib/rubygems/vendor/resolv/lib/resolv.rb', line 3243 def scalar @scalar end |
Class Method Details
.create(arg) ⇒ Object
Creates a new LOC::Size from arg
which may be:
- LOC::Size
-
returns
arg
. - String
-
arg
must match the LOC::Size::Regex constant
3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 |
# File 'lib/rubygems/vendor/resolv/lib/resolv.rb', line 3219 def self.create(arg) case arg when Size return arg when String scalar = '' if Regex =~ arg scalar = [(($1.to_f*(1e2)).to_i.to_s[0].to_i*(2**4)+(($1.to_f*(1e2)).to_i.to_s.length-1))].pack("C") else raise ArgumentError.new("not a properly formed Size string: " + arg) end return Size.new(scalar) else raise ArgumentError.new("cannot interpret as Size: #{arg.inspect}") end end |
Instance Method Details
#==(other) ⇒ Object
:nodoc:
3254 3255 3256 |
# File 'lib/rubygems/vendor/resolv/lib/resolv.rb', line 3254 def ==(other) # :nodoc: return @scalar == other.scalar end |
#eql?(other) ⇒ Boolean
:nodoc:
3258 3259 3260 |
# File 'lib/rubygems/vendor/resolv/lib/resolv.rb', line 3258 def eql?(other) # :nodoc: return self == other end |
#hash ⇒ Object
:nodoc:
3262 3263 3264 |
# File 'lib/rubygems/vendor/resolv/lib/resolv.rb', line 3262 def hash # :nodoc: return @scalar.hash end |
#inspect ⇒ Object
:nodoc:
3250 3251 3252 |
# File 'lib/rubygems/vendor/resolv/lib/resolv.rb', line 3250 def inspect # :nodoc: return "#<#{self.class} #{self}>" end |
#to_s ⇒ Object
:nodoc:
3245 3246 3247 3248 |
# File 'lib/rubygems/vendor/resolv/lib/resolv.rb', line 3245 def to_s # :nodoc: s = @scalar.unpack("H2").join.to_s return ((s[0].to_i)*(10**(s[1].to_i-2))).to_s << "m" end |