Class: Smalltalk::Collection
Direct Known Subclasses
Instance Attribute Summary (collapse)
-
- (Object) raw
Returns the value of attribute raw.
Instance Method Summary (collapse)
-
- (Collection) initialize(raw)
constructor
A new instance of Collection.
- - (Object) to_a
Constructor Details
- (Collection) initialize(raw)
A new instance of Collection
89 90 91 |
# File 'lib/reak/bootstrap.rb', line 89 def initialize(raw) @raw = raw end |
Instance Attribute Details
- (Object) raw
Returns the value of attribute raw
88 89 90 |
# File 'lib/reak/bootstrap.rb', line 88 def raw @raw end |
Instance Method Details
- (Object) to_a
93 94 95 |
# File 'lib/reak/bootstrap.rb', line 93 def to_a raw.to_a end |