ApplyToElement 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 a given element of an array.

operation ApplyToElement<'T> (op : ('T => Unit), index : Int, targets : 'T[]) : Unit

Description

Given an operation op, an index index, and an array of targets targets, applies op(targets[index]).

Input

op : 'T => Unit

An operation to be applied.

index : Int

An index into the array of targets.

targets : 'T[]

An array of possible targets for op.

Output : Unit

Type Parameters

'T

The input type of the operation to be applied.

See Also