Insert quantum registers into this one.
| C# | Visual Basic | Visual C++ |
public IQuantumRegister InsertQubits( int AtIndex, IQuantumRegister[] RegistersToInsert )
Public Function InsertQubits ( _ AtIndex As Integer, _ RegistersToInsert As IQuantumRegister() _ ) As IQuantumRegister
public: virtual IQuantumRegister^ InsertQubits( int AtIndex, array<IQuantumRegister^>^ RegistersToInsert ) sealed
- AtIndex (Int32)
- The register will be inserted starting at this index. The qubits at this index and after at the existing one will be shifted.
- RegistersToInsert (array< IQuantumRegister >[]()[])
- The registers to insert. They will be inserted in the same order they are in the array. Passing null is valid and has no effect on the register.
A reference to the combined register.
| Exception | Condition |
|---|---|
| IndexOutOfRangeException | Thrown if the index specified
is out of range. |
| ArgumentOutOfRangeException | Thrown if this insert causes the register to
exceed the maximum allowable size. Also thrown if an element in the array passed is null. |
| NotImplementedException | This method is not yet
implemented. |