BoundedSeries<E extends Bounded>.view constructor

BoundedSeries<E extends Bounded>.view(
  1. Iterable<E> source, {
  2. Bounds<Point<num>>? bounds,
})

Create an BoundedSeries instance backed by source.

An optional bounds can be provided or it's lazy calculated if null.

Implementation

factory BoundedSeries.view(Iterable<E> source, {Bounds? bounds}) =
    _BoundedSeriesView<E>;