Files
2022-07-30 20:47:39 +02:00

24 lines
337 B
Swift

//
// SwiftGenKit
// Copyright © 2022 SwiftGen
// MIT Licence
//
import Foundation
extension Bool {
init?(from string: String) {
switch string {
case "YES":
self = true
case "NO":
self = false
default:
guard let value = Bool(string) else {
return nil
}
self = value
}
}
}