2007-01-18 22:24:27 +00:00
|
|
|
ObjectRange = Class.create();
|
|
|
|
Object.extend(ObjectRange.prototype, Enumerable);
|
|
|
|
Object.extend(ObjectRange.prototype, {
|
|
|
|
initialize: function(start, end, exclusive) {
|
|
|
|
this.start = start;
|
|
|
|
this.end = end;
|
|
|
|
this.exclusive = exclusive;
|
|
|
|
},
|
|
|
|
|
|
|
|
_each: function(iterator) {
|
|
|
|
var value = this.start;
|
|
|
|
while (this.include(value)) {
|
|
|
|
iterator(value);
|
|
|
|
value = value.succ();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
include: function(value) {
|
|
|
|
if (value < this.start)
|
|
|
|
return false;
|
|
|
|
if (this.exclusive)
|
|
|
|
return value < this.end;
|
|
|
|
return value <= this.end;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
var $R = function(start, end, exclusive) {
|
|
|
|
return new ObjectRange(start, end, exclusive);
|
2007-08-07 19:41:13 +00:00
|
|
|
};
|