Tail 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.Standard

Returns the last element of the array.

function Tail<'A> (array : 'A[]) : 'A

Input

array : 'A[]

Array of which the last element is taken. Array must have length at least 1.

Output : 'A

The last element of the array.

Type Parameters

'A

The type of the array elements.