class Rexle::Element::Attribute

Attributes

to_s[R]
value[R]

Public Class Methods

new(value) click to toggle source
# File lib/rexle.rb, line 299
def initialize(value)
  @value = value
end

Public Instance Methods

to_f() click to toggle source
# File lib/rexle.rb, line 303
def to_f()
  @value.to_f
end
to_i() click to toggle source
# File lib/rexle.rb, line 307
def to_i()
  @value.to_i
end