Example #1
0
 private CellLoop(StreamLoop <T> streamLoop)
     : base(streamLoop, null) => this.streamLoop = streamLoop;
Example #2
0
 private DiscreteCellLoop(CellLoop <T> cellLoop)
     : base(cellLoop)
 {
     this.streamLoop = new StreamLoop <T>();
     this.cellLoop   = cellLoop;
 }