plus

@ExperimentalSinceKotoolsTypes(version = "4.2")
operator fun NotBlankString.plus(other: String): NotBlankString
@ExperimentalSinceKotoolsTypes(version = "4.2")
operator fun NotBlankString.plus(other: NotBlankString): NotBlankString

Concatenates this string with the other one.


@ExperimentalSinceKotoolsTypes(version = "4.2")
operator fun NotBlankString.plus(other: Char): NotBlankString

Concatenates this string with the other character.


@ExperimentalSinceKotoolsTypes(version = "4.2")
operator fun Char.plus(other: NotBlankString): NotBlankString

Concatenates this character with the other string.