<html><head><meta http-equiv="Content-Type" content="text/html charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">It’s worth mentioning that the problem this thread is discussing can be generalized to idioms / applicative. &nbsp;The specific case here is for Optional but many other types could benefit from an elegant syntactic solution to this problem. &nbsp;It might be worth exploring a more general solution. &nbsp;Here’s a link to how this is handled in Idris:&nbsp;<a href="http://docs.idris-lang.org/en/latest/tutorial/interfaces.html#idiom-brackets" class="">http://docs.idris-lang.org/en/latest/tutorial/interfaces.html#idiom-brackets</a>.<div class=""><br class=""></div><div class="">Matthew</div><div class=""><div class=""><br class=""><div><blockquote type="cite" class=""><div class="">On Dec 11, 2017, at 12:01 PM, Jared Khan via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class=""><div class="">1. Correct<br class=""><br class="">2. It felt natural to me. It’s analogous to the existing optional chaining scenarios and composes nicely. I think it’s about as understandable as existing chaining, a newbie would have to look it up to discover its meaning. What are your thoughts on this particular syntax (ignoring 3. momentarily)? Hopefully others in this thread can share their views too.<br class="">As for how common I’d expect it to be, it’s something I’ve run into myself a few times. Again, I hope members of this list can give their view on if this would be useful to them.<br class=""><br class="">3. I’m not entirely sure what the grammar situation is yet but afaik ‘?’ has never been available as a postfix operator. Perhaps I’m missing your point, could you demonstrate where it is allowed?<br class=""><br class="">Best,<br class="">Jared<br class=""><br class=""><blockquote type="cite" class="">On 11 Dec 2017, at 17:07, Magnus Ahltorp &lt;<a href="mailto:map@kth.se" class="">map@kth.se</a>&gt; wrote:<br class=""><br class=""><br class=""><blockquote type="cite" class="">12 Dec. 2017 01:30 Jared Khan via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a>&gt; wrote:<br class=""><br class="">I'd like to propose a syntax addition that acts to ease some things that I believe should fall under the umbrella of 'optional chaining'. Optional chaining allows us to access the properties of an optional value and return nil if any link in that chain breaks. I propose we introduce syntax to allow similar chaining when passing optional valued parameters to functions that expect that parameter to be non-optional.<br class=""></blockquote><br class="">1. Am I right in assuming that you propose that the suffix operator "?" would make the result of the surrounding method/function call optional, so that a(b(c?)) would make the result of the "b" function call optional, but not the "a" function call, and that it would be a(b(c?)?) if we would like to propagate this two levels?<br class=""><br class="">2. If that is the case, is that understandable/neat enough? How common would you expect this to be?<br class=""><br class="">3. For some reason, (in current Swift) the suffix operator "?" seems to be allowed in intra-expression syntax, and only fails when the inter-expression syntax is checked for optionality congruence. Is there a reason for this? I would have expected that the congruence error "cannot use optional chaining on non-optional value of type" would never be seen for a lone "?", since the error message "'?' must be followed by a call, member lookup, or subscript" would always be displayed first if it was checked first. The "." operator checks intra-expression syntax first, before checking congruence. Is this a sign that "?" as a suffix operator is already somewhat operational as an operator for optional types? I have a faint recollection that it was doing something in earlier versions of Swift.<br class=""><br class="">/Magnus<br class=""><br class=""></blockquote><br class="">_______________________________________________<br class="">swift-evolution mailing list<br class=""><a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a><br class="">https://lists.swift.org/mailman/listinfo/swift-evolution<br class=""></div></div></blockquote></div><br class=""></div></div></body></html>