ParametricInterval.of constructor

ParametricInterval.of(
  1. ParametricInterval interval
)

Constructs a copy of interval.

Note: Cached variables are not copied.

Implementation

ParametricInterval.of(ParametricInterval interval)
    : startFunc = interval.startFunc,
      endFunc = interval.endFunc,
      super(inverseCdf: interval.inverseCdf);