convert<T extends Bounded> abstract method

BoundedSeries<T> convert<T extends Bounded>(
  1. T conversion(
    1. E source
    ), {
  2. bool lazy = false,
})

Returns a new series with all items converted using conversion function.

The converted series is populated by default. If lazy is set true then returns a new lazy series with itmes of the series converted lazily.

Implementation

BoundedSeries<T> convert<T extends Bounded>(
  T Function(E source) conversion, {
  bool lazy = false,
});