<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body><div>I support the addition of a Result, and I encourage people to look at&nbsp;<a href="https://doc.rust-lang.org/stable/std/result/index.html">https://doc.rust-lang.org/stable/std/result/index.html</a>&nbsp;for a good example of how this can be done well. I'd like a Result&lt;T,E&gt; in Swift that looks similar.<br></div>
<div>&nbsp;</div>
<div>I do not support the addition of Either. As far as I am aware, the only compelling argument in favor of an Either type is "because Haskell has one", but I believe it's commonly recognized that Haskell's Either is not particularly good. It's a weird name for results (which Result covers), and for other cases it's usually better just to define your own two-variant enum anyway. Rust provides some evidence in favor of this, as this was the rationale for why Rust has a Result&lt;T,E&gt; but no Either, and it turns out there has been no need to add an Either.<br></div>
<div>&nbsp;</div>
<div>-Kevin Ballard</div>
<div>&nbsp;</div>
<div>On Wed, Dec 9, 2015, at 04:01 PM, T.J. Usiyan via swift-evolution wrote:<br></div>
<blockquote type="cite"><div dir="ltr">I hope that we can get both Either and Result into the standard lib. A great situation might be if Result were some sort of newtype declaration of Either.<br></div>
<div><div>&nbsp;</div>
<div><div>On Thu, Dec 10, 2015 at 5:25 AM, Developer via swift-evolution <span dir="ltr">&lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt;</span> wrote:<br></div>
<blockquote style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0.8ex;border-left-width:1px;border-left-color:rgb(204, 204, 204);border-left-style:solid;padding-left:1ex;"><div style="word-wrap:break-word;"><div>There is!&nbsp; That’s what the Bifunctor typeclass is for.&nbsp; But if you had to pick just one of them to implement some Functor constraint - some canonical `map` function, would you pick the side that you filled with Errors, or the side that you filled with Values?<br></div>
<div><div><div>&nbsp;</div>
<div><div>&nbsp;</div>
<div><blockquote type="cite"><div>On Dec 9, 2015, at 6:52 PM, Jacob Bandes-Storch &lt;<a href="mailto:jtbandes@gmail.com">jtbandes@gmail.com</a>&gt; wrote:<br></div>
<div>&nbsp;</div>
<div><div dir="ltr"><div>Is there not precedent for having both "mapLeft&lt;T&gt;(f: L -&gt; T) -&gt; Either&lt;T, R&gt;" and "mapRight&lt;T&gt;(f: R -&gt; T) -&gt; Either&lt;L, T&gt;" ?<br></div>
<div><div>&nbsp;</div>
<div><div><div dir="ltr"><div>Jacob Bandes-Storch<br></div>
</div>
</div>
</div>
<div>&nbsp;</div>
<div><div>On Wed, Dec 9, 2015 at 3:49 PM, Developer <span dir="ltr">&lt;<a href="mailto:devteam.codafi@gmail.com">devteam.codafi@gmail.com</a>&gt;</span> wrote:<br></div>
<blockquote style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0.8ex;border-left-width:1px;border-left-color:rgb(204, 204, 204);border-left-style:solid;padding-left:1ex;"><div style="word-wrap:break-word;"><div>How would you write `map` for an unbiased Either.&nbsp; You have to pick a side!<br></div>
<div>&nbsp;</div>
<div>Our implementation happens to be the one standardized on by Scala, Haskell, ML, (and to a limited extent) F#.&nbsp; For a less arbitrary reason, the use of "Right as Correct" is because Either, in all it’s Bifunctor-ial ways, has to admit two ways to map “across” itself.&nbsp; To paraphrase the words of a friend "There are lots of things in computer science we can leftMap”.&nbsp; In Haskell, such a thing is represented by the Functor typeclass, and due to the way type application works in that language, the convention has been to map over the rightmost side.&nbsp; But this isn’t Haskell, so our reasons can get even more theoretical than that (if you really want to get into what it looks like when you implement Covariant mapping down the left side of a common Bifunctor like Either, Cats has already had a thorough discussion on the subject:&nbsp;<a href="https://github.com/non/cats/issues/189">https://github.com/non/cats/issues/189</a>).<br></div>
<div><div><div>&nbsp;</div>
<div><div><blockquote type="cite"><div>On Dec 9, 2015, at 6:44 PM, Ilias Karim &lt;<a href="mailto:ilias.karim@gmail.com">ilias.karim@gmail.com</a>&gt; wrote:<br></div>
<div>&nbsp;</div>
<div><div style="word-wrap:break-word;"><div>I’m sorry, I misunderstood. I guess an enum would be the appropriate choice, instead.<br></div>
<div>&nbsp;</div>
<div>As far as left/right goes, the decision to have left or right be the “correct” value is entirely arbitrary and should be left up to the developer. It should be a convention at best.<br></div>
<div>&nbsp;</div>
<div>Ilias<br></div>
<div><div>&nbsp;</div>
<div><blockquote type="cite"><div>On Dec 9, 2015, at 3:43 PM, Dave DeLong &lt;<a href="mailto:delong@apple.com">delong@apple.com</a>&gt; wrote:<br></div>
<div>&nbsp;</div>
<div><div style="word-wrap:break-word;"><div>With a tuple, you have to do “(left: T?, right: U?)”, whereas with an Either you are guaranteed to always have one or other other; never both and never neither. That is not guaranteed with the tuple.<br></div>
<div>&nbsp;</div>
<div>Dave<br></div>
<div><div>&nbsp;</div>
<div><blockquote type="cite"><div>On Dec 9, 2015, at 4:41 PM, Ilias Karim via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; wrote:<br></div>
<div>&nbsp;</div>
<div><div style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;">What are the advantage over using a tuple? One great feature about tuples is being able to name parameters so you can dispel ambiguity.<br></div>
<div style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;">&nbsp;</div>
<div>&nbsp;</div>
<div style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant: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"><div>On Dec 9, 2015, at 3:35 PM, Jacob Bandes-Storch &lt;<a href="mailto:jtbandes@gmail.com">jtbandes@gmail.com</a>&gt; wrote:<br></div>
<div>&nbsp;</div>
<div><div dir="ltr"><div>The idea of using Left/Right is to remain agnostic to what sorts of things users might want to put in. It's feasible a user might want Either&lt;Int, String&gt;, not just Either&lt;ErrorType, T&gt;.<br></div>
<div>&nbsp;</div>
<div><div>While I'm not sure Left &amp; Right are the best choices, I don't think it's particularly worrisome when it comes to errors, as the general type-safety of the language will prevent users from mixing up success &amp; error cases.<br></div>
<div><div>&nbsp;</div>
<div><div><div dir="ltr"><div>Jacob<br></div>
</div>
</div>
</div>
<div>&nbsp;</div>
<div><div>On Wed, Dec 9, 2015 at 3:32 PM, Ilias Karim via swift-evolution<span></span><span dir="ltr">&lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt;</span><span></span>wrote:<br></div>
<blockquote style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0.8ex;border-left-width:1px;border-left-color:rgb(204, 204, 204);border-left-style:solid;padding-left:1ex;"><div>Hi Robert,<br></div>
<div>&nbsp;</div>
<div>I agree with your recommendation of a generic Either type.<br></div>
<div>&nbsp;</div>
<div>However, I find your use of “Right” as the “Correct” value (whatever that means) of an instance of an Either type a little perplexing. While clever, it is exactly the kind of convention that easily leads to misunderstandings about the nature of the type itself ie. is it right and left or wrong and correct? At least that is my first impression after scanning your code.<br></div>
<div>&nbsp;</div>
<div>Ilias<br></div>
<div><div><div>&nbsp;</div>
<div>&gt; On Dec 9, 2015, at 3:06 PM, Developer via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; wrote:<br></div>
<div>&gt;<br></div>
<div>&gt; It’s high time the STL admitted some kind of disjoint union type, at the very least because it’s such a minor addition it seems a shame to leave it out.&nbsp; Whatever feelings one may have about `throws`, the lack of standardizing on a datatype representing choice has caused the community to get creative and create many disjoint implementation of the same concept over and over and over again.&nbsp; To that end, I propose the STL ship with an Either type; We at TypeLift have already got our own we’d like to model it on (<a href="https://github.com/typelift/Swiftx/blob/master/Swiftx/Either.swift#L16">https://github.com/typelift/Swiftx/blob/master/Swiftx/Either.swift#L16</a>).<br></div>
<div>&gt;<br></div>
<div>&gt;<br></div>
<div>&gt; ~Robert Widmann (CodaFi)<br></div>
<div>&gt; _______________________________________________<br></div>
<div>&gt; swift-evolution mailing list<br></div>
<div>&gt;<span></span><a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a><br></div>
<div>&gt;<span></span><a href="https://lists.swift.org/mailman/listinfo/swift-evolution">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br></div>
<div>&nbsp;</div>
<div>_______________________________________________<br></div>
<div>swift-evolution mailing list<br></div>
<div><a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a><br></div>
<div><a href="https://lists.swift.org/mailman/listinfo/swift-evolution">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br></div>
</div>
</div>
</blockquote></div>
<div>&nbsp;</div>
</div>
</div>
</div>
</div>
</blockquote></div>
<div>&nbsp;</div>
<div><img style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;min-height:1px !important;width:1px !important;border-top-width:0px !important;border-right-width:0px !important;border-bottom-width:0px !important;border-left-width:0px !important;margin-top:0px !important;margin-right:0px !important;margin-bottom:0px !important;margin-left:0px !important;padding-top:0px !important;padding-right:0px !important;padding-bottom:0px !important;padding-left:0px !important;" border="0" height="1" width="1" alt="" src="https://www.fastmailusercontent.com/proxy/4df6c17a672dbc1d79d49d287594fe30b7741153e237ed5ade771b61cb74d019/8647470737a3f2f25723030323431303e23647e23756e64676279646e2e65647f27766f2f60756e6f35707e6d38777c4d223642474761705c627151396777615c633377447138346d407856683f62656d6a56565761394478515930744e4d223248645b6431533467603778677177556b6d405174395f60525575505d4462776873697b49387559453e41477a43424e4d6d2232474e40374474707d22324566414643324b4d22324277484a68577c626e686566533745544676525d4e65365e6b60525963443240366a663832737a7c4156565f6a6240746d655e6772755f4731336a7945693d2232425d6f446d22324353465a61723f4d423854736336756b417678534245623a627d4e43454e403c4b444053373240345a7d22324a40364e686c6e4867763f455d23344/open"><span class="font" style="font-family:Helvetica"><span class="size" style="font-size:12px"><span></span></span></span><span class="font" style="font-family:Helvetica"><span class="size" style="font-size:12px">_______________________________________________</span></span><br></div>
<div><span class="font" style="font-family:Helvetica"><span class="size" style="font-size:12px">swift-evolution mailing list</span></span><br></div>
<div><a style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;" href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a><br></div>
<div><a style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;" href="https://lists.swift.org/mailman/listinfo/swift-evolution">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br></div>
</div>
</blockquote></div>
<div>&nbsp;</div>
</div>
</div>
</div>
</blockquote></div>
<div>&nbsp;</div>
</div>
</div>
</div>
</blockquote></div>
<div>&nbsp;</div>
</div>
</div>
</div>
</div>
</blockquote></div>
<div>&nbsp;</div>
</div>
</div>
</div>
</blockquote></div>
<div>&nbsp;</div>
</div>
<div><img style="min-height:1px !important;width:1px !important;border-top-width:0px !important;border-right-width:0px !important;border-bottom-width:0px !important;border-left-width:0px !important;margin-top:0px !important;margin-bottom:0px !important;margin-right:0px !important;margin-left:0px !important;padding-top:0px !important;padding-bottom:0px !important;padding-right:0px !important;padding-left:0px !important;" border="0" height="1" width="1" alt="" src="https://www.fastmailusercontent.com/proxy/eaf8391373f58c23a00e2cd63ddca2382cb6699f0eab09dea9e411831e753659/8647470737a3f2f25723030323431303e23647e23756e64676279646e2e65647f27766f2f60756e6f35707e6d333647466f63605267687b6e4b6d6a6567346a636b676939477d223247495953385632587a41347b65585b434f6f6d6a717444665360566a69314555447d223242315d22364c413d223647375651725c6c4630597857744e68676d466537636e667a464e474778573f68456a71624d22364e483a54583e4d2236456d4f6b62454a49396864653378764937474247683d647f6861623c4257735d466237567a754c603a674a76663231347979696759623a7d223641614f4c6b646338594d2232466b45717039673d4d6a577f4c67575a425d2236447f445d223641776d603d2236475a667838326a7e69487252646b66795878565576537d4c617a624774665e614d23344/open"><br></div>
</div>
</div>
</div>
<div>&nbsp;</div>
<div>_______________________________________________<br></div>
<div>
swift-evolution mailing list<br></div>
<div> <a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a><br></div>
<div> <a href="https://lists.swift.org/mailman/listinfo/swift-evolution">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br></div>
<div>&nbsp;</div>
</blockquote></div>
</div>
<div><img style="height:1px !important;width:1px !important;border-top-width:0px !important;border-right-width:0px !important;border-bottom-width:0px !important;border-left-width:0px !important;margin-top:0px !important;margin-bottom:0px !important;margin-right:0px !important;margin-left:0px !important;padding-top:0px !important;padding-bottom:0px !important;padding-right:0px !important;padding-left:0px !important;" border="0" height="1" width="1" alt="" src="https://www.fastmailusercontent.com/proxy/dac11682feb81afe48fd1697c255e91cacf8027bfe0f5271f04d9fc45023e85f/8647470737a3f2f25723030323431303e23647e23756e64676279646e2e65647f27766f2f60756e6f35707e6d3148765176786c673171614a7d2236454230345272776e416d22324a503b62713275693462445d223643763d6a483148796f4a5e4b4b446950314161784f6a6e6d22324477393164614c403935386c4d223648457c49745452767867697438513b40743d22364c4c6d4167507c64496876403d666b637176723a7f6a623932336a40375957617b657535345639617631786a4a6558664b4d2232407030365c4436356a4d6b43414935326a4664665c4b69547f6d22364c4867617565707442694035303450536278683a4837536a693443766347775946423837495c444f4267725e47386f614d23344d23344/open"><br></div>
<div><u>_______________________________________________</u><br></div>
<div>swift-evolution mailing list<br></div>
<div><a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a><br></div>
<div><a href="https://lists.swift.org/mailman/listinfo/swift-evolution">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br></div>
</blockquote><div>&nbsp;</div>
</body>
</html>