Flattened 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

Given an array of arrays, returns the concatenation of all arrays.

function Flattened<'T> (arrays : 'T[][]) : 'T[]

Input

arrays : 'T[][]

Array of arrays.

Output : 'T[]

Concatenation of all arrays.

Type Parameters

'T

The type of array elements.

Example

let flattened = Flattened([[1, 2], [3], [4, 5, 6]]);
// flattened = [1, 2, 3, 4, 5, 6]