コード例 #1
0
ファイル: Program.cs プロジェクト: sihamyakoubi/INFDEV02-4
 public AdapterIterator(UnsafeIterator <T> iterator)
 {
     this.iterator = iterator;
 }
コード例 #2
0
ファイル: Program.cs プロジェクト: sihamyakoubi/INFDEV02-4
 public Map(UnsafeIterator <T> collection, Func <T, U> f)
 {
     this.decoratedCollection = collection;
     this.f = f;
 }