Support for min(), max(), range(), sum(), and prod() on numeric
series. min(), max(), and range() report the smallest and largest
values that bound the series: the extreme discrete values, together with any
sinks() (limit points) the discrete values approach. sum() and prod()
are only defined for series with finitely many discrete values.
Value
A numeric vector: length 2 for range(), length 1 otherwise.
Details
min() and max() return the infimum and supremum of the discrete values.
For an unbounded series these are -Inf and Inf; for a series whose values
pile up against a finite sink (e.g. 1 / natural1() approaching 0), the
sink is the relevant bound even though it is not itself a discrete value.
all() and any() are not defined for numeric series, and sum() and
prod() throw an error when the series has infinitely many discrete values.
