ApplyToTailC 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 last element of an array.

operation ApplyToTailC<'T> (op : ('T => Unit is Ctl), targets : 'T[]) : Unit is Ctl

Description

Given an operation op and an array of targets targets, applies op(Tail(targets)).

Input

op : 'T => Unit is Ctl

An operation to be applied.

targets : 'T[]

An array of targets, of which the last will be applied to op.

Output : Unit

Type Parameters

'T

The input type of the operation to be applied.

See Also