Example #1
0
 LongRange(long start, long end, long step, IBoundsCheck boundsCheck)
 {
     _start       = start;
     _end         = end;
     _step        = step;
     _boundsCheck = boundsCheck;
 }
Example #2
0
 private Range(Object start, Object end, Object step, IBoundsCheck boundsCheck)
 {
     _end         = end;
     _start       = start;
     _step        = step;
     _boundsCheck = boundsCheck;
 }
Example #3
0
 private LongRange(long start, long end, long step, IBoundsCheck boundsCheck, LongChunk chunk, ISeq chunkNext)
 {
     _start       = start;
     _end         = end;
     _step        = step;
     _boundsCheck = boundsCheck;
     _chunk       = chunk;
     _chunkNext   = chunkNext;
 }
Example #4
0
 Range(object start, object end, object step, IBoundsCheck boundsCheck, IChunked chunk, ISeq chunkNext)
 {
     this._start       = start;
     this._end         = end;
     this._step        = step;
     this._boundsCheck = boundsCheck;
     this._chunk       = chunk;
     this._chunkNext   = chunkNext;
 }
Example #5
0
 private Range(Object start, Object end, Object step, IBoundsCheck boundsCheck, IChunk chunk, ISeq chunkNext)
 {
     _end         = end;
     _start       = start;
     _step        = step;
     _boundsCheck = boundsCheck;
     _chunk       = chunk;
     _chunkNext   = chunkNext;
 }
Example #6
0
 LongRange(long start, long end, long step, IBoundsCheck boundsCheck, IChunked chunk, ISeq chunkNext)
 {
     this._start       = start;
     this._end         = end;
     this._step        = step;
     this._boundsCheck = boundsCheck;
     this._chunk       = chunk;
     this._chunkNext   = chunkNext;
 }
Example #7
0
 private LongRange(IPersistentMap meta, long start, long end, long step, IBoundsCheck boundsCheck, LongChunk chunk, ISeq chunkNext)
     : base(meta)
 {
     _start       = start;
     _end         = end;
     _step        = step;
     _boundsCheck = boundsCheck;
     _chunk       = chunk;
     _chunkNext   = chunkNext;
 }
Example #8
0
 private Range(IPersistentMap meta, Object start, Object end, Object step, IBoundsCheck boundsCheck, IChunk chunk, ISeq chunkNext)
     : base(meta)
 {
     _end         = end;
     _start       = start;
     _step        = step;
     _boundsCheck = boundsCheck;
     _chunk       = chunk;
     _chunkNext   = chunkNext;
 }
Example #9
0
 Range(object start, object end, object step, IBoundsCheck boundsCheck) :
     this(start, end, step, boundsCheck, null, null)
 {
 }
Example #10
0
 LongRange(long start, long end, long step, IBoundsCheck boundsCheck) :
     this(start, end, step, boundsCheck, null, null)
 {
 }