plus
operator fun ComplexFloatArray.plus(element: ComplexFloat): ComplexFloatArray
Content copied to clipboard
operator fun ComplexDoubleArray.plus(element: ComplexDouble): ComplexDoubleArray
Content copied to clipboard
Returns an array containing all elements of the original array and then the given element.
operator fun ComplexFloatArray.plus(elements: Collection<ComplexFloat>): ComplexFloatArray
Content copied to clipboard
operator fun ComplexDoubleArray.plus(elements: Collection<ComplexDouble>): ComplexDoubleArray
Content copied to clipboard
Returns an array containing all elements of the original array and then all elements of the given elements collection.
operator fun ComplexFloatArray.plus(elements: ComplexFloatArray): ComplexFloatArray
Content copied to clipboard
operator fun ComplexDoubleArray.plus(elements: ComplexDoubleArray): ComplexDoubleArray
Content copied to clipboard
Returns an array containing all elements of the original array and then all elements of the given elements array.