display

abstract fun display(value: Any, id: String? = null)

Try to display the given value. It is only displayed if it's an instance of Renderable or may be converted to it


open fun display(value: Any)

Deprecated

Use full version instead

Replace with

display(value, null)

Try to display the given value. It is only displayed if it's an instance of Renderable or may be converted to it

Left for binary compatibility