Skip to content

Instantly share code, notes, and snippets.

@matthewcheok
Created July 16, 2016 14:43
Show Gist options
  • Save matthewcheok/5182465cf0671be4792fc037d28577be to your computer and use it in GitHub Desktop.
Save matthewcheok/5182465cf0671be4792fc037d28577be to your computer and use it in GitHub Desktop.
extension Range where Bound: Int {
func random() -> Int {
return min + Int(arc4random_uniform(UInt32(upperBound - lowerBound)))
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment