Debt

data class Debt(    val days: Int = 0,     val hours: Int = 0,     val mins: Int = 0)

Debt describes the estimated amount of work needed to fix a given issue.

Constructors

Link copied to clipboard
fun Debt(    days: Int = 0,     hours: Int = 0,     mins: Int = 0)

Types

Link copied to clipboard
object Companion

Functions

Link copied to clipboard
operator fun plus(other: Debt): Debt

Adds the other debt to this debt. This recalculates the potential overflow resulting from the addition.

Link copied to clipboard
open override fun toString(): String

Properties

Link copied to clipboard
val days: Int = 0
Link copied to clipboard
val hours: Int = 0
Link copied to clipboard
val mins: Int = 0