Example #1
0
 public TableConditionalEnumerator(TableEnumerator <T> tableEnumerator, ConditionalCallback <T> callback) : base(tableEnumerator.Table, tableEnumerator.Length)
 {
     this.Table    = tableEnumerator.Table;
     this.Length   = tableEnumerator.Length;
     this.Callback = callback;
 }
Example #2
0
 public TableReverseEnumerator(TableEnumerator <T> tableEnumerator) : base(tableEnumerator.Table, tableEnumerator.Length)
 {
     this.Table  = tableEnumerator.Table;
     this.Length = tableEnumerator.Length;
 }