ApplyToRestC 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 all but the first element of an array.

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

Description

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

Input

op : 'T[] => Unit is Ctl

An operation to be applied.

targets : 'T[]

An array of targets, of which all but the first will be applied to op.

Output : Unit

Type Parameters

'T

The input type of the operation to be applied.

See Also