<div dir="ltr">On Sat, Dec 12, 2015 at 7:43 AM, Kevin Ballard 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><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><u></u>




<div><div>Can you provide any examples where you think it&#39;s demonstrably better to have an Either than to just implement your own two-variant type, assuming that we do already have a Result type to handle results?<br></div></div></blockquote><div><br></div><div>Any time there are specifically two discrete choices or states. Yes, &quot;if you have three then you should make a custom enum&quot; but–if you only have two–the benefit of using Either *instead* of a custom enum is that you can leverage all of the same machinery without much extra effort. You can reply to every possible example with &quot;you could make a custom enum with two cases&quot; but, for every one of those, you would get nothing for free. If Either makes it into the standard library and you *don&#39;t* want that machinery, you can create your own custom enum.</div><div><br></div><div>As for a concrete example, Scales are, typically symmetrical (ascending and descending) or asymmetrical. Ideally, I would like to wrap Either in a newtype and call it a day. .Left is not an error case so the argument about that being counterintuitive is moot. I simply have two possibilities to choose from and I am fairly certain that that will not change in the future.<br></div><div> </div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div></div>
<div> </div>
<div>I haven&#39;t gone trawling through GitHub for Either, but glancing through that search you provided, it looks like it&#39;s basically just people trying to reproduce Haskell concepts in Swift, which isn&#39;t particularly meaningful. The only non-FP justification I saw was robrix/Either which demonstrated using an Either to hold the results of a computation, which of course is what Result does, and really the only reason it&#39;s called Either is because of FP anyway.<br></div>
<div> </div>
<div>-Kevin Ballard</div><div><div class="h5">
<div> </div>
<div>On Fri, Dec 11, 2015, at 08:09 PM, Developer via swift-evolution wrote:<br></div>
</div></div><blockquote type="cite"><div><div class="h5"><pre style="white-space:pre-wrap;background-color:rgb(255,255,255)"><br></pre><blockquote type="cite"><pre style="white-space:pre-wrap;background-color:rgb(255,255,255)">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 &quot;because Haskell has
one&quot;, but I believe it&#39;s commonly recognized that Haskell&#39;s Either is
not particularly good.<br></pre></blockquote><div>I have yet to read counterarguments about the addition of Either to the Haskell base library.  And though it may be tempting to assume, because TypeLift is oriented towards declarative programming, that we wish to see Swift and Haskell enter some kind of unholy union (excuse the pun), I based this proposal not off of a desire to see more FP, but to see less duplicate implementations (<a href="https://github.com/search?utf8=✓&amp;q=Either+language%3Aswift&amp;type=Code&amp;ref=searchresults" target="_blank">https://github.com/search?utf8=✓&amp;q=Either+language%3Aswift&amp;type=Code&amp;ref=searchresults</a>).  If GitHub is any indicator, the Swift community wants an Either, and it seems fitting to me that the language standardize on one and allow the community to instead focus their efforts on writing interesting extensions to such a common type. <br></div>
<div> </div>
<div>If you need a less anecdotal argument, consider the type of program `throws` can represent versus the type of program `Either` can represent.  On the one hand, yes, the latter does have certain conventions that encourage it to duplicate cases that the former already provides, but Either is supposed to properly represent a computation that can produce multiple discrete results - an if-else as a value.  If you wish to support more arities, nest down the left or right lobe of the type as you would nest branches.  If you want to start supporting higher-order variants, you start to run into inclusion-exclusion problems (see how we implemented a `Those` type <a href="https://github.com/typelift/Swiftz/blob/master/Swiftz/Those.swift" target="_blank">https://github.com/typelift/Swiftz/blob/master/Swiftz/Those.swift</a>)  <br></div>
<blockquote type="cite"><pre style="white-space:pre-wrap;background-color:rgb(255,255,255)">It&#39;s a weird name for results (which Result
covers), and for other cases it&#39;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></pre></blockquote><div>I’ll admit, the name is definitely less than ideal, but it should be a simple thing to change (I’m only interested in the structure here): XOr, Choice, Variant, Alternative, V come to mind.<br></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/b1a2622f6a7aa3218c22c20dcf20192e7bbd77c4ac2cb693bb26ac7bde1ce392/8647470737a3f2f25723030323431303e23647e23756e64676279646e2e65647f27766f2f60756e6f35707e6d3148765176786c673171614a7d2236454230345272776e4856754b4f61577d2236414631313537447978313a5539703073783f63426c65565e44483844605a5c69474a6d2236416f41603374607469675b45775759797d675a5d22364a5140785178503254687271437953305934754a683e4f6134356f46653d22324f66575d223244536562397b60597741714764654d22324262625748597b68767354553a543c65327557665c4d2232453663514f49626541696a5f4645467a533537447141493f61403361713a6a566371543272455b43336d6377694d4664714770573c415948397a614d23344d23344/open"><br></div>
</div></div><span class=""><div><u>_______________________________________________</u><br></div>
<div>swift-evolution mailing list<br></div>
<div><a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a><br></div>
<div><a href="https://lists.swift.org/mailman/listinfo/swift-evolution" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br></div>
</span></blockquote><div> </div>

<img src="https://u2002410.ct.sendgrid.net/wf/open?upn=3FGfocPbgxkNkmje7djckg9Iw-2BGYY3X6RxJ1tkUXKCqTGX6HoeDTTYlWU-2FP-2FAUOMEzOUP9l-2FiD4G8mdexzMrpSBtP2IiHe0KS-2FP5AA5LxV-2F8PV-2FwSDMdsXaVr2PtKx8-2B9KHR-2FSM63mV20vR5mM8H7sACaKSKH4zdJbQLjTJMWShBHowQBrdloPZw2Uco22eK4YoG3OGLjDZkxTd1UddvHo5BD6vBSgkvz3ODu7oS5JM-3D" alt="" width="1" height="1" border="0" style="min-height:1px!important;width:1px!important;border-width:0!important;margin-top:0!important;margin-bottom:0!important;margin-right:0!important;margin-left:0!important;padding-top:0!important;padding-bottom:0!important;padding-right:0!important;padding-left:0!important">
</div>


<br>_______________________________________________<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/mailman/listinfo/swift-evolution</a><br>
<br></blockquote></div><br></div></div>