类 Resolv::LOC::Size

一个 Resolv::LOC::Size

常量

Regex

属性

scalar[R]

原始大小

公共类方法

create(arg) 点击切换源代码

arg 创建一个新的 LOC::Sizearg 可以是

LOC::Size

返回 arg

String

arg 必须匹配 LOC::Size::Regex 常量

# File lib/resolv.rb, line 3164
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
new(scalar) 点击切换源代码
# File lib/resolv.rb, line 3181
def initialize(scalar)
  @scalar = scalar
end