IssueList

@Serializable
value class IssueList<T>(issues: MutableList<T> = mutableListOf())

Constructors

Link copied to clipboard
constructor(issues: 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(issues: T)
fun append(issues: List<T>)
Link copied to clipboard

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

Link copied to clipboard
fun getIssues(): List<T>
Link copied to clipboard

Returns the number of entries with a certain severity.

Link copied to clipboard

Returns a summary of the issue 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: IssueList<T>)