Skip to contents

This forces the output of c() to the equivalent of list() only for inputs of type ivfn

Usage

# S3 method for class 'ivfn'
c(...)

Arguments

...

a set of ivfn objects

Value

[list()]
A list of ivfn objects

Details

For ivfn objects, c() combines all of the lower and upper data into a single ivfn object, but list() returns the expected output of a list of distinct ivfn objects.

See also

Examples

c(ivfn(0, 1), ivfn(0.2, 0.5))
#> [[1]]
#> ivfn: [0, 1]
#> [[2]]
#> ivfn: [0.2, 0.5]