<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body><div>Can you provide any examples where you think it'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>&nbsp;</div>
<div>I haven't gone trawling through GitHub for Either, but glancing through that search you provided, it looks like it's basically just people trying to reproduce Haskell concepts in Swift, which isn'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's called Either is because of FP anyway.<br></div>
<div>&nbsp;</div>
<div>-Kevin Ballard</div>
<div>&nbsp;</div>
<div>On Fri, Dec 11, 2015, at 08:09 PM, Developer via swift-evolution wrote:<br></div>
<blockquote type="cite"><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 "because Haskell has
one", but I believe it's commonly recognized that Haskell'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. &nbsp;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">https://github.com/search?utf8=✓&amp;q=Either+language%3Aswift&amp;type=Code&amp;ref=searchresults</a>). &nbsp;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.&nbsp;<br></div>
<div>&nbsp;</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. &nbsp;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. &nbsp;If you wish to support more arities, nest down the left or right lobe of the type as you would nest branches. &nbsp;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">https://github.com/typelift/Swiftz/blob/master/Swiftz/Those.swift</a>) &nbsp;<br></div>
<blockquote type="cite"><pre style="white-space:pre-wrap;background-color:rgb(255, 255, 255);">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></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="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><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>