toDouble method

Iterable<double> toDouble()

Implementation

Iterable<double> toDouble() sync* {
  for (final d in this) {
    yield d.toDouble();
  }
}