2024-12-25 18:06:05 +01:00

12 lines
173 B
Swift

prefix operator ~>
prefix func ~> (operation: () throws -> Void) -> Bool {
do {
try operation()
return true
} catch {
return false
}
}