In Files

  • soap/marshal.rb
  • soap/soap.rb

Parent

Namespace

Class/Module Index [+]

Quicksearch

Object

Constants

SOAPMarshal

Public Instance Methods

instance_variable_get(ivarname) click to toggle source
 
               # File soap/soap.rb, line 123
def instance_variable_get(ivarname)
  instance_eval(ivarname)
end
            
instance_variable_set(ivarname, value) click to toggle source
 
               # File soap/soap.rb, line 127
def instance_variable_set(ivarname, value)
  instance_eval("#{ivarname} = value")
end