section: Language * $R(start, end[, exclusive = false]) -> ObjectRange * * Creates a new [[ObjectRange]] object. This method is a convenience wrapper * around the [[ObjectRange]] constructor, but [[$R]] is the preferred alias. * * [[ObjectRange]] instances represent a range of consecut
(start, end, exclusive)
| 79 | * See [[ObjectRange]] for more information. |
| 80 | **/ |
| 81 | function $R(start, end, exclusive) { |
| 82 | return new ObjectRange(start, end, exclusive); |
| 83 | } |
| 84 | |
| 85 | var ObjectRange = Class.create(Enumerable, (function() { |
| 86 | /** |
no outgoing calls
no test coverage detected