Skip to content

Instantly share code, notes, and snippets.

@ReaperUnreal
Created December 15, 2015 22:05
Show Gist options
  • Save ReaperUnreal/9590d10705a405ea0cbe to your computer and use it in GitHub Desktop.
Save ReaperUnreal/9590d10705a405ea0cbe to your computer and use it in GitHub Desktop.
private int getLineMask(Line line) {
int mask = line
.getTileIndices()
.stream()
.mapToInt(idx -> 1 << idx)
.reduce(0, (a, b) -> a | b);
return mask;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment