Skip to content

Instantly share code, notes, and snippets.

@tylertreat
Last active August 29, 2015 14:21
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tylertreat/be382e73264935e6bbdd to your computer and use it in GitHub Desktop.
Save tylertreat/be382e73264935e6bbdd to your computer and use it in GitHub Desktop.
func isInt64InSlice(i int64, slice []int64) bool {
for _, j := range slice {
if j == i {
return true
}
}
return false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment