count abstract method
Returns the count of elements.
Example
final count = DoubleStream.of([1.5, 2.5, 3.5]).count(); // 3
Implementation
int count();
Returns the count of elements.
final count = DoubleStream.of([1.5, 2.5, 3.5]).count(); // 3
int count();