concat

open fun concat(Array: Array<Short>, Element: Short): Array<Short>

Concatenate an element to an arrays - is Java primitive! Ada - of course - can do this out of the box

Return

Array_1 &Element

Parameters

Array

Array to append to

Element

element to append


open fun concat(Array_1: Array<Short>, Array_2: Array<Short>): Array<Short>

Concatenate 2 arrays - is Java primitive! Ada - of course - can do this out of the box

Return

Array_1 &Array_2

Since

uiq 3.0.7

Parameters

Array_1

Array to append to

Array_2

Array to append