The 'special sets' are the group of sets that are commonly used in mathematics and are thus given their own names.
set6::Set -> set6::Interval -> SpecialSet
new()SpecialSet is an abstract class, the constructor cannot be used directly.
SpecialSet$new(lower = -Inf, upper = Inf, type = "()", class = "numeric")
lowerdefines the lower bound of the interval.
upperdefines the upper bound of the interval.
typedefines the interval closure type.
classdefines the interval class.
strprint()Creates a printable representation of the object.
SpecialSet$strprint(n = NULL)
nignored, added for consistency.
A character string representing the object.
clone()The objects of this class are cloneable with this method.
SpecialSet$clone(deep = FALSE)
deepWhether to make a deep clone.
This is an abstract class and should not be constructed directly. Use listSpecialSets to see the list of implemented special sets.