Get the infimum of the support.

infimum(object)

Arguments

object

A support object.

Value

The infimum (greatest lower bound) of the support.

Examples

I <- interval$new(0, 10)
infimum(I)  # 0
#> [1] 0

S <- finite_set$new(c(3, 7, 11))
infimum(S)  # 3
#> [1] 3