Most 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

Creates an array that is equal to an input array except that the last array element is dropped.

function Most<'T> (array : 'T[]) : 'T[]

Input

array : 'T[]

An array whose first to second-to-last elements are to form the output array.

Output : 'T[]

An array containing the elements array[0..Length(array) - 2].

Type Parameters

'T

The type of the array elements.