示例#1
0
 internal void ConvertToMixed()
 {
     if (this.elements is HTupleElementsMixed)
     {
         throw new HTupleAccessException();
     }
     this.elements = (HTupleElementsImplementation)this.parent.ConvertToMixed(this.elements.getIndices());
 }
示例#2
0
 internal HTupleElements(HTuple parent, HTupleMixed tupleImp, int[] indices)
 {
     this.parent   = parent;
     this.elements = (HTupleElementsImplementation) new HTupleElementsMixed(tupleImp, indices);
 }
示例#3
0
 internal HTupleElements(HTuple parent, HTupleString tupleImp, int[] indices)
 {
     this.parent   = parent;
     this.elements = (HTupleElementsImplementation) new HTupleElementsString(tupleImp, indices);
 }
示例#4
0
 internal HTupleElements(HTuple parent, HTupleDouble tupleImp, int[] indices)
 {
     this.parent   = parent;
     this.elements = (HTupleElementsImplementation) new HTupleElementsDouble(tupleImp, indices);
 }
示例#5
0
 internal HTupleElements(HTuple parent, HTupleInt64 tupleImp, int index)
 {
     this.parent   = parent;
     this.elements = (HTupleElementsImplementation) new HTupleElementsInt64(tupleImp, index);
 }
示例#6
0
 internal HTupleElements(HTuple parent, HTupleInt32 source, int[] indices)
 {
     this.parent   = parent;
     this.elements = (HTupleElementsImplementation) new HTupleElementsInt32(source, indices);
 }
示例#7
0
 internal HTupleElements()
 {
     this.parent   = (HTuple)null;
     this.elements = new HTupleElementsImplementation();
 }