Skip to content

Instantly share code, notes, and snippets.

@dlhartveld
Last active December 15, 2015 03:59
Show Gist options
  • Save dlhartveld/5198093 to your computer and use it in GitHub Desktop.
Save dlhartveld/5198093 to your computer and use it in GitHub Desktop.
Iterating (for-loop) version of the Stream API example. See also: https://gist.github.com/dlhartveld/5198058
List<Block> blocks = /* ... */;
int sumOfWeights = 0;
for (Block block : blocks) {
if (block.getColor() == Color.RED) {
sumOfWeights += block.getWeight();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment