Skip to content

Instantly share code, notes, and snippets.

@hazge
Last active July 1, 2020 18:39
Show Gist options
  • Save hazge/e21440d3e98e6355643714c574e09bc3 to your computer and use it in GitHub Desktop.
Save hazge/e21440d3e98e6355643714c574e09bc3 to your computer and use it in GitHub Desktop.
iota groups
type Group uint
const (
Black Group = 1
Pink = 1 << iota
Grey
None = 0
)
// Combine
var gb Group = Black | Grey
// Check if contains group
if gb & Pink != None {
// Contains Pink (it's not)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment