plus

operator fun String?.plus(other: Any?): String

Concatenates this string with the string representation of the given other object. If either the receiver or the other object are null, they are represented as the string "null".

operator fun String?.plus(other: Any?): String

Concatenates this string with the string representation of the given other object. If either the receiver or the other object are null, they are represented as the string "null".


inline operator fun BigDecimal.plus(other: BigDecimal): BigDecimal(source)

Enables the use of the + operator for BigDecimal instances.


inline operator fun BigInteger.plus(other: BigInteger): BigInteger(source)

Enables the use of the + operator for BigInteger instances.

inline operator fun String?.plus(other: Any?): String