count abstract method

int count()

Returns the count of elements.

Example

final count = DoubleStream.of([1.5, 2.5, 3.5]).count(); // 3

Implementation

int count();