Rest function
Namespace: Microsoft.Quantum.Arrays
Package: Microsoft.Quantum.Standard
Creates an array that is equal to an input array except that the first array element is dropped.
function Rest<'T> (array : 'T[]) : 'T[]
Input
array : 'T[]
An array whose second to last elements are to form the output array.
Output : 'T[]
An array containing the elements array[1..Length(array) - 1]
.
Type Parameters
'T
The type of the array elements.
Feedback
Submit and view feedback for