CommonFunctionkotlinoperator fun Component?.plus(component: Component?): ComponentCombines two nullable Components into a new Component.If either Component is null, it is treated as an empty Component.Parameters ParameterDescriptioncomponentThe Component to appendReturns A new Component containing both texts
CommonFunctionkotlinoperator fun String?.plus(component: Component?): ComponentCombines a nullable String with a nullable Component.The string is converted to a literal Component before appending.Parameters ParameterDescriptioncomponentThe Component to appendReturns A new Component containing both texts
CommonFunctionkotlinoperator fun Component?.plus(string: String?): ComponentCombines a nullable Component with a nullable String.The string is converted to a literal Component and prepended to the Component.Parameters ParameterDescriptionstringThe string to prependReturns A new Component containing both texts