<div dir="ltr">I think that `Either` in the standard library with some means to provide generalized behavior for two-cased enums would be an amazing salve for this. Handling errors thrown in Playgrounds is one of the best examples, in my opinion, of why we need something like Either/Result in the standard library. It is fairly unpleasant to work with throwing code in a playground. I end up creating a `Result` type to standardize and sweeten throwing, for one.</div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, May 1, 2017 at 5:48 PM, Rod Brown via swift-evolution <span dir="ltr">&lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word"><br><div><blockquote type="cite"><span class=""><div>On 2 May 2017, at 2:34 am, John McCall &lt;<a href="mailto:rjmccall@apple.com" target="_blank">rjmccall@apple.com</a>&gt; wrote:</div><br class="m_7445485508192858513Apple-interchange-newline"></span><div><div style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><blockquote type="cite"><span class=""><div><br class="m_7445485508192858513Apple-interchange-newline">On May 1, 2017, at 9:01 AM, Rod Brown via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; wrote:</div></span><span class=""><div><div dir="auto"><div><span style="background-color:rgba(255,255,255,0)">I agree that the key problem with the current architecture that you&#39;re alluding to is it can&#39;t be easily</span><span style="background-color:rgba(255,255,255,0)"> </span><i style="background-color:rgba(255,255,255,0)">stored and transferred.<span class="m_7445485508192858513Apple-converted-space"> </span></i><span style="background-color:rgba(255,255,255,0)">Swift errors are great for live action but holding and passing after the throwing event is problematic, and this is an elegant solution. </span><span style="background-color:rgba(255,255,255,0)">The storage issue is when holding it as a property, and </span><span style="background-color:rgba(255,255,255,0)">the transferring issue is when passing it to a closure as a results of an asynchronous operation etc. These are both definitely cases where storage of the type-or-error makes perfect sense.</span></div><div><span style="background-color:rgba(255,255,255,0)"><br></span></div><div><span style="background-color:rgba(255,255,255,0)">I think the key problem getting this accepted by the Swift Team will be that it doesn&#39;t currently have any specific use in the standard library. As a low level set of types, errors are generated by the lower levels but rarely stored, so the Standard library doesn&#39;t need the storage. Generally the only place we have to do that is in end user code. And currently the standard library doesn&#39;t have to support asynchronous operations natively, so there&#39;s nothing inside the kit that would require it to do completion handlers with errors.</span></div></div></div></span></blockquote><span class=""><div><br></div>We&#39;ve definitely considered including a Result type, but our sense was that in an ideal world almost no code would be using it.  It&#39;s hard to imagine an ordinary API that ought to be returning a Result rather than throwing, and once you&#39;ve defined that away, the major remaining use case is just to shift computation around, like with a completion handler.  That explicit computation-shifting pattern is something we&#39;re hoping to largely define away with something like C#&#39;s async/await, which would leave Result as mostly just an implementation detail of such APIs.  We didn&#39;t want to spend a great deal of time designing a type that would end up being so marginal, especially if the changing role would lead us into different directions on the design itself.  We also didn&#39;t want to design a type that would become an obstacle to potential future language changes like, say, typed throws.</span></div><span class=""><div style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><br></div><div style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px">The downside, of course, is that as long as we lack that async/await design, computation-shifting isn&#39;t real great.</div><div style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><br></div><div style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px">John.</div></span></div></blockquote><div><br></div><div>This makes sense and is sensible. I’m curious how such an API would play with the existing NSURLSession completion handlers and the like, but I’m sure the community can design something appropriate.</div><div><br></div><div>I think the only remaining case is simply storing a result-or-error for later handling, storage to disk, etc. I agree with your contention that the vast majority of the use case for this type is for computation shifting. I think it would and should be rare that we would want to “store” as a variable the “result-or-error” type. Errors should be handled at runtime in the vast majority of cases, presented to the user or otherwise handled, and then moved on from, with the reason no longer being relevant.</div><div><br></div><div>As you say, in the meantime, it does leave computation-shifting a bit ad-hoc and convoluted, but I think the community has standardized on the Result temporary solution.</div><span class=""><br><blockquote type="cite"><div><div style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><br><blockquote type="cite"><div><div dir="auto"><div><span style="background-color:rgba(255,255,255,0)"><br></span></div><div><span style="background-color:rgba(255,255,255,0)">This would therefore be an element in the standard library purely so we don&#39;t have 50,000 different libraries with 50,000 different result types. I&#39;d love to see this standardised so frameworks were more compatible. I&#39;m just not sure whether the Core Team would see it as pressing to try and officiate a certain type that they themselves don&#39;t use.</span></div></div></div></blockquote></div></div></blockquote></span></div><br></div><br>______________________________<wbr>_________________<br>
swift-evolution mailing list<br>
<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a><br>
<a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/<wbr>mailman/listinfo/swift-<wbr>evolution</a><br>
<br></blockquote></div><br></div>