RestrictedToSubregister function

Warning

This documentation refers to the Classic QDK, which has been replaced by the Modern QDK.

Please see https://aka.ms/qdk.api for the API documentation for the Modern QDK.

Namespace: Microsoft.Quantum.Canon

Package: Microsoft.Quantum.Standard

Restricts an operation to an array of indices of a register, i.e., a subregister.

function RestrictedToSubregister (op : (Qubit[] => Unit), idxs : Int[]) : (Qubit[] => Unit)

Input

op : Qubit[] => Unit

Operation to be restricted to a subregister.

idxs : Int[]

Array of indices, indicating to which qubits the operation will be restricted.

Output : Qubit[] => Unit

See Also