Return the (vector of) infimum of the interval.

# S3 method for class 'interval'
infimum(object)

Arguments

object

An interval object.

Value

Numeric vector of lower bounds.

Examples

iv <- interval$new(lower = 0, upper = 1)
infimum(iv) # 0
#> [1] 0