Class: Smalltalk::Collection

Inherits:
Object
  • Object
show all
Defined in:
lib/reak/bootstrap.rb

Direct Known Subclasses

SequenceableCollection

Instance Attribute Summary (collapse)

Instance Method Summary (collapse)

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