Delayed 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

Returns an operation that applies given operation with given argument.

function Delayed<'T, 'U> (op : ('T => 'U), arg : 'T) : (Unit => 'U)

Input

op : 'T => 'U

An operation to be applied.

arg : 'T

The input to which the operation is applied.

Output : Unit => 'U

A new operation which applies op with input arg

Type Parameters

'T

The input type of the operation to be delayed.

'U

The return type of the operation to be delayed.

See Also