maxBound

abstract fun maxBound(maxValue: Int)(source)

A shortcut for

bound {
    maxValue = maxValue
}

See also


abstract fun maxBound(maxValue: Provider<Int>)(source)

A shortcut for

bound {
    maxValue = max
}

See also


abstract fun maxBound(    maxValue: Int,     coverageUnits: CoverageUnit = CoverageUnit.LINE,     aggregationForGroup: AggregationType = AggregationType.COVERED_PERCENTAGE)(source)

A shortcut for

bound {
    maxValue = maxValue
    coverageUnits = coverageUnits
    aggregationForGroup = aggregation
}

See also