示例#1
0
 public HTupleElementsImplementation(HTupleImplementation source, int index)
 {
     this.source  = source;
     this.indices = new int[1] {
         index
     };
 }
示例#2
0
 public HTupleElementsImplementation(HTupleImplementation source, int[] indices)
 {
     this.source  = source;
     this.indices = indices;
 }
示例#3
0
 public HTupleElementsImplementation()
 {
     this.source  = (HTupleImplementation)null;
     this.indices = new int[0];
 }