and

Combines two InlineContent if both are non-null.

Return

the combined InlineContent if both are non-null, null otherwise


infix fun InlineContent?.and(other: String?): InlineContent?

Combines an InlineContent with a String, which is converted to plain text.


infix fun String?.and(other: InlineContent?): InlineContent?

Combines a String, which is converted to plain text, with an InlineContent.


infix fun String?.and(other: String?): InlineContent?

Combines two Strings to InlineContent, converting them to plain text.