MessageList

@Serializable
value class MessageList<T>(messages: MutableList<T> = mutableListOf())

Constructors

Link copied to clipboard
constructor(messages: MutableList<T> = mutableListOf())

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val size: Int

Functions

Link copied to clipboard
fun append(message: T)
fun append(messages: List<T>)
Link copied to clipboard

Returns true, if list contains messages with fatal error severity.

Link copied to clipboard
Link copied to clipboard

Returns the number of entries with a certain severity.

Link copied to clipboard

Returns a summary of the message numbers depending on the severity.

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
operator fun plusAssign(other: T)
operator fun plusAssign(other: MessageList<T>)