EmptyArray 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.Arrays

Package: Microsoft.Quantum.QSharp.Foundation

Returns the empty array of a given type.

function EmptyArray<'TElement> () : 'TElement[]

Output : 'TElement[]

The empty array.

Type Parameters

'TElement

The type of elements of the array.

Example

let empty = EmptyArray<Int>();