Return the infimum of the finite set.

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

Arguments

object

A finite set.

Value

Numeric; the minimum value(s).

Examples

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