Avatar
I disagree to add Result to the standard library for now. Major use cases of Result are error handling of asynchronous operations. We will be able to do it without Result when Swift supports async/await. // without Result nor async/await func download(from url: URL, _ c...