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