Skip to content

Instantly share code, notes, and snippets.

@campoy
Last active January 29, 2018 07:13
Show Gist options
  • Save campoy/65e11b4b9e2cf73b742cccb388a1f7bf to your computer and use it in GitHub Desktop.
Save campoy/65e11b4b9e2cf73b742cccb388a1f7bf 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