|
|
object ArrayShow : Show<Any> |
|
|
A default implementation of Show that handles arrays, collections and primitives as well as nullable values.
object DefaultShow : Show<Any?> |
|
|
class IterableShow<T> : Show<Iterable<T>> |
|
|
object KClassShow : Show<KClass<*>> |
|
|
class ListShow<T> : Show<List<T>> |
|
|
object MapShow : Show<Map<*, *>> |
|
|
object PathShow : Show<Path> |
|
|
data class Printed |
|
|
The Show typeclass abstracts the ability to obtain a String representation of any object.
It is used as a replacement for Java's Object#toString so that custom representations of
the object can be printed.
interface Show<in A> |
|
|
object StringShow : Show<String> |