Probability

A quantity describing probability. (For example, 10%.)

Types

Link copied to clipboard
object Companion
Link copied to clipboard
abstract class Unit(name: String, factor: Long) : UnitBase

Probability units.

Functions

Link copied to clipboard
open override fun abs(): Probability

Returns a new instance with the value from this as absolute value.

Link copied to clipboard
open operator override fun compareTo(other: Probability): Int
Link copied to clipboard

Returns a complement of this probability.

Link copied to clipboard
open operator override fun div(divisor: Double): Probability
open operator override fun div(divisor: Int): Probability

Returns a new instance with the value from this divided by divisor.

Link copied to clipboard

Returns a FormattedQuantity representation of the value from this in the given unit.

Link copied to clipboard

Expresses the probability's value in percent.

Link copied to clipboard

Expresses the probability's value as a unit range.

Link copied to clipboard

Expresses the probability's value in percent.

Link copied to clipboard
open operator override fun minus(other: Probability): Probability

Returns a new instance that has other's value subtracted from this.

Link copied to clipboard
open operator override fun plus(other: Probability): Probability

Returns a new instance with a value equal to the sum of values from this and other.

Link copied to clipboard
open operator override fun times(factor: Double): Probability
open operator override fun times(factor: Int): Probability

Returns a new instance with the value from this multiplied by factor.

Link copied to clipboard
open operator override fun unaryMinus(): Probability

Returns a new instance with the value from this as negative.