Skip to content

Instantly share code, notes, and snippets.

@campoy
Created January 29, 2018 07:12
Show Gist options
  • Save campoy/1eb3f34eea159ad2376782640bc0077a to your computer and use it in GitHub Desktop.
Save campoy/1eb3f34eea159ad2376782640bc0077a to your computer and use it in GitHub Desktop.
i, v, ok := reflect.Select(cases)
if !ok {
cases = append(cases[:i], cases[i+1:]...)
continue
}
out <- v.Interface().(int)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment