Skip to content

Instantly share code, notes, and snippets.

@bennokress
Last active June 13, 2017 13:10
Show Gist options
  • Save bennokress/b80d597db6b5d9d86449853a759d02aa to your computer and use it in GitHub Desktop.
Save bennokress/b80d597db6b5d9d86449853a759d02aa to your computer and use it in GitHub Desktop.
Extensions for Swift's Bool Type
extension Bool {
static func random(trueProbability: Int = 50) -> Bool {
// NEEDS THE INT EXTENSION for a random Int! --> IntExtensions.swift
return Int.random(between: 1, and: 100) <= trueProbability ? true : false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment