unaryPlus

operator fun String.unaryPlus()

Adds a static string as a line.


operator fun Component.unaryPlus()

Adds a static component as a line.


operator fun (Player) -> Component.unaryPlus()

Adds a line that changes based on the player.


@JvmName(name = "plusStringFunction")
operator fun (Player) -> String.unaryPlus()
@JvmName(name = "plusStringNoArgFunction")
operator fun () -> String.unaryPlus()

Adds a string-returning function as a line.


operator fun () -> Component.unaryPlus()

Adds a component-returning function as a line.