Skip to content

Instantly share code, notes, and snippets.

@actaeon
Created December 9, 2016 20:35
Show Gist options
  • Save actaeon/9b87c7046029790a52d3cf547b94a249 to your computer and use it in GitHub Desktop.
Save actaeon/9b87c7046029790a52d3cf547b94a249 to your computer and use it in GitHub Desktop.
func() {
for _, item := range list.Items {
found := false
for _, reserved := range reserved.Items {
if reserved.ID == item.ID {
found = true
return
}
... do some other work ...
}
... do some other work ...
}
}()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment