Skip to content

Instantly share code, notes, and snippets.

@orchetect
Created July 14, 2022 18:15
Show Gist options
  • Save orchetect/5b1329e7a4d70c8f8815114157948b62 to your computer and use it in GitHub Desktop.
Save orchetect/5b1329e7a4d70c8f8815114157948b62 to your computer and use it in GitHub Desktop.
extension Result {
@_disfavoredOverload
public mutating func set(_ newSuccess: Success) {
self = .success(newSuccess)
}
@_disfavoredOverload
public mutating func set(_ newFailure: Failure) {
self = .failure(newFailure)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment