Avatar
SE-0235: Add Result to the Standard Library has been revised and is now open for review through Sunday, December 2nd. Based on the first round of feedback, the core team agrees that this feature is worth adding to Swift, and we are now looking for feedback on our proposed re...
11:35 PM
https://github.com/apple/swift-evolution/commit/db086de27804f6103ab8cde8801d41eb67edca38 -public enum Result<Value, Error> { - case success(Value), failure(Error) +public enum Result<Value, Error: Swift.Error> { + case value(Value), error(Error) } (edited)
Revise SE-0235 with core team feedback and put it back in review