PlusA 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.Math

Package: Microsoft.Quantum.Standard

Returns the sum (concatenation) of two inputs.

function PlusA<'Element> (a : 'Element[], b : 'Element[]) : 'Element[]

Input

a : 'Element[]

The first input $a$ to be summed.

b : 'Element[]

The second input $b$ to be summed.

Output : 'Element[]

The sum $a + b$.

Type Parameters

'Element

The type of each element in each of the two input arrays.