plus

operator fun Byte.plus(other: ComplexFloat): ComplexFloat
operator fun Short.plus(other: ComplexFloat): ComplexFloat
operator fun Int.plus(other: ComplexFloat): ComplexFloat
operator fun Long.plus(other: ComplexFloat): ComplexFloat
operator fun Float.plus(other: ComplexFloat): ComplexFloat
operator fun Double.plus(other: ComplexFloat): ComplexDouble
operator fun Byte.plus(other: ComplexDouble): ComplexDouble
operator fun Short.plus(other: ComplexDouble): ComplexDouble
operator fun Int.plus(other: ComplexDouble): ComplexDouble
operator fun Long.plus(other: ComplexDouble): ComplexDouble
operator fun Float.plus(other: ComplexDouble): ComplexDouble
operator fun Double.plus(other: ComplexDouble): ComplexDouble


operator fun ComplexFloatArray.plus(element: ComplexFloat): ComplexFloatArray
operator fun ComplexDoubleArray.plus(element: ComplexDouble): ComplexDoubleArray

Returns an array containing all elements of the original array and then the given element.


operator fun ComplexFloatArray.plus(elements: Collection<ComplexFloat>): ComplexFloatArray
operator fun ComplexDoubleArray.plus(elements: Collection<ComplexDouble>): ComplexDoubleArray

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
operator fun ComplexDoubleArray.plus(elements: ComplexDoubleArray): ComplexDoubleArray

Returns an array containing all elements of the original array and then all elements of the given elements array.