count abstract method
Returns the count of elements in this stream.
Example
final count = GenericStream.of([1, 2, 3, 4, 5]).count(); // 5
Implementation
int count();
Returns the count of elements in this stream.
final count = GenericStream.of([1, 2, 3, 4, 5]).count(); // 5
int count();