12 lines
173 B
Swift
12 lines
173 B
Swift
|
|
prefix operator ~>
|
|
|
|
prefix func ~> (operation: () throws -> Void) -> Bool {
|
|
do {
|
|
try operation()
|
|
return true
|
|
} catch {
|
|
return false
|
|
}
|
|
}
|