|
@@ -17,17 +17,6 @@ namespace Invercargill {
|
|
|
|
|
|
public Sequence() {}
|
|
|
|
|
|
- // public override bool iterate_if (PredicateDelegate<T> handler) {
|
|
|
- // var current = root;
|
|
|
- // while(current != null) {
|
|
|
- // if(!handler(current.value)) {
|
|
|
- // return false;
|
|
|
- // }
|
|
|
- // current = current.next;
|
|
|
- // }
|
|
|
- // return true;
|
|
|
- // }
|
|
|
-
|
|
|
public override Tracker<T> get_tracker() {
|
|
|
var current = root;
|
|
|
|
|
@@ -68,10 +57,6 @@ namespace Invercargill {
|
|
|
return n_items;
|
|
|
}
|
|
|
|
|
|
- public override Enumerable<Pair<T, Tother>> pair<Tother>(Enumerable<Tother> other) {
|
|
|
- return new PairEnumerable<T, Tother>(this, other.to_sequence());
|
|
|
- }
|
|
|
-
|
|
|
}
|
|
|
|
|
|
}
|