Class: LXL::Deferred
- Inherits:
-
Object
- Object
- LXL::Deferred
- Defined in:
- lib/lxl.rb
Overview
Instance Attribute Summary collapse
-
#args ⇒ Object
Returns the value of attribute args.
-
#symbol ⇒ Object
Returns the value of attribute symbol.
Instance Method Summary collapse
-
#initialize(symbol, *args) ⇒ Deferred
constructor
A new instance of Deferred.
Constructor Details
#initialize(symbol, *args) ⇒ Deferred
Returns a new instance of Deferred.
498 499 500 501 |
# File 'lib/lxl.rb', line 498 def initialize(symbol, *args) @symbol = symbol @args = args end |
Instance Attribute Details
#args ⇒ Object
Returns the value of attribute args.
496 497 498 |
# File 'lib/lxl.rb', line 496 def args @args end |
#symbol ⇒ Object
Returns the value of attribute symbol.
496 497 498 |
# File 'lib/lxl.rb', line 496 def symbol @symbol end |