ApplyToFirstThreeQubitsA operation

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

Applies an operation to the first three qubits in the register. The modifier A indicates that the operation is adjointable.

operation ApplyToFirstThreeQubitsA (op : ((Qubit, Qubit, Qubit) => Unit is Adj), register : Qubit[]) : Unit is Adj

Input

op : (Qubit,Qubit,Qubit) => Unit is Adj

An operation to be applied to the first three qubits

register : Qubit[]

Qubit array to the first three qubits of which the operation is applied.

Output : Unit

Remarks

This is equivalent to:

op(register[0], register[1], register[2]);

See Also