Accessing Collections with Index
Any collection can generate an index of itself
The index behaves as an object, and understands messages such as:
prev,next
findNext: o,findPrev: o
Using index to loop over all members:
index=[list begin: zone];
while(o=[index next])
value=[o getValue];
[index drop];
Previous slide
Next slide
Back to first slide
View graphic version