Skip to content

Instantly share code, notes, and snippets.

@campoy
Last active January 29, 2018 07:12
Show Gist options
  • Save campoy/c14c78fc5f3fe38a0c4fad136e766889 to your computer and use it in GitHub Desktop.
Save campoy/c14c78fc5f3fe38a0c4fad136e766889 to your computer and use it in GitHub Desktop.
var cases []reflect.SelectCase
for _, c := range chans {
cases = append(cases, reflect.SelectCase{
Dir: reflect.SelectRecv,
Chan: reflect.ValueOf(c),
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment