Created
September 11, 2022 17:10
-
-
Save marcel-ploch/70f31138cd7dfcaec7d1442e607b967d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Future<int> sumStream(Stream<int> stream) async { | |
var sum = 0; | |
await for (final value in stream) { | |
sum += value; | |
} | |
return sum; | |
} | |
Stream<int> countStream(int to) async* { | |
for (int i = 1; i <= to; i++) { | |
yield i; | |
} | |
} | |
void main() async { | |
var stream = countStream(2); | |
var sum = await sumStream(stream); | |
print(sum); // 55 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment