<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=""><span class="">1. What is your evaluation of the proposal?</span><div class=""><span class=""><br class="">+1 on the proposal’s objective - the swiftification of libdispatch is greatly appreciated. But I&nbsp;have reservation in the particulars of the proposal which are not in line with the API Design&nbsp;Guidelines.</span></div><div class=""><span class=""><br class="">For example, the `getSpecific(_:)` instance method in `DispatchQueue` is supposed to have no side&nbsp;effect like `NSObject.value(_:)` - just the retrieval of the value. But it somehow has a `get`&nbsp;suffix in the method name. Likewise, the class function `getSpecific(_:)` has a similar issue, but&nbsp;also not describing the behaviour precisely enough. Shouldn’t it be something&nbsp;like`specificForCurrentQueue(_:)`?</span></div><div class=""><span class=""><br class="">On the other hand, The adverbs used by `synchronously(_:)` and `asynchornously(_:)` in&nbsp;`DispatchQueue` fits nowhere in the guidelines, which (generally speaking) requires either&nbsp;imperative verb for functions having side-effects, or nouns for whatever else. Both functions&nbsp;clearly have a side effect on the queue, be it performing atomics or appending a block. IMO these&nbsp;should be verbs describing the behaviour, like `sync`, `synchronize`, `perform`, `performAndWait`,&nbsp;`schedule` or `run`.<br class=""><br class=""><br class=""><font face="Menlo" class="">queue.synchronously(block)&nbsp;&nbsp;&nbsp;// Is this grammatical? :-[&nbsp;&nbsp;<br class=""></font><br class=""><br class="">One may argue these adverbs are term of arts, but then why not simply use the short form (`async`&nbsp;and `sync`) from the C API, which is less verbose and could even possibly be implied as imperative&nbsp;verbs? Say `async` and `sync` as a shorthand of `asynchronize` * and `synchronise`.</span></div><div class=""><span class=""><br class=""></span></div><div class=""><span class=""><i class="">* this doesn’t formally exist… yet.</i></span></div><div class=""><span class=""><br class="">2. Is the problem being addressed significant enough to warrant a change to Swift?<br class="">Yes. It should improve the experience of Swift developers, since libdispatch is heavily used in the&nbsp;Cocoa platforms.&nbsp;</span>Autocompletion would have less noise, and the interface is cleaner to work with.</div><div class=""><br class=""></div><div class=""><span class="">3. Does this proposal fit well with the feel and direction of Swift?<br class="">Yes.</span></div><div class=""><span class=""><br class="">4. If you have used other languages or libraries with a similar feature, how do you feel that this&nbsp;proposal compares to those?<br class="">There are a few wrappers on GitHub that serves a similar purpose. But it is always great to have&nbsp;less dependency, especially for things that are essential like libdispatch.</span></div><div class=""><span class=""><br class="">5. How much effort did you put into your review? A glance, a quick reading, or an in-depth study?<br class="">A focused study on the `DispatchQueue` renaming, since it would be the thing affecting me the most.<br class=""><br class=""></span><div><blockquote type="cite" class=""><div class="">On 11 May 2016, at 12:39 PM, Chris Lattner 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="">Hello Swift community,<br class=""><br class="">The review of "SE-0088: Modernize libdispatch for Swift 3 naming conventions" begins now and runs through May 17. The proposal is available here:<br class=""><br class=""><span class="Apple-tab-span" style="white-space:pre">        </span><a href="https://github.com/apple/swift-evolution/blob/master/proposals/0088-libdispatch-for-swift3.md" class="">https://github.com/apple/swift-evolution/blob/master/proposals/0088-libdispatch-for-swift3.md</a><br class=""><br class="">Reviews are an important part of the Swift evolution process. All reviews should be sent to the swift-evolution mailing list at<br class=""><br class=""><span class="Apple-tab-span" style="white-space:pre">        </span>https://lists.swift.org/mailman/listinfo/swift-evolution<br class=""><br class="">or, if you would like to keep your feedback private, directly to the review manager.<br class=""><br class="">What goes into a review?<br class=""><br class="">The goal of the review process is to improve the proposal under review through constructive criticism and contribute to the direction of Swift. When writing your review, here are some questions you might want to answer in your review:<br class=""><br class=""><span class="Apple-tab-span" style="white-space:pre">        </span>* What is your evaluation of the proposal?<br class=""><span class="Apple-tab-span" style="white-space:pre">        </span>* Is the problem being addressed significant enough to warrant a change to Swift?<br class=""><span class="Apple-tab-span" style="white-space:pre">        </span>* Does this proposal fit well with the feel and direction of Swift?<br class=""><span class="Apple-tab-span" style="white-space:pre">        </span>* If you have used other languages or libraries with a similar feature, how do you feel that this proposal compares to those?<br class=""><span class="Apple-tab-span" style="white-space:pre">        </span>* How much effort did you put into your review? A glance, a quick reading, or an in-depth study?<br class=""><br class="">More information about the Swift evolution process is available at<br class=""><br class=""><span class="Apple-tab-span" style="white-space:pre">        </span>https://github.com/apple/swift-evolution/blob/master/process.md<br class=""><br class="">Thank you,<br class=""><br class="">-Chris Lattner<br class="">Review Manager<br class=""><br class=""><br class=""><br class="">_______________________________________________<br class="">swift-evolution mailing list<br class="">swift-evolution@swift.org<br class="">https://lists.swift.org/mailman/listinfo/swift-evolution<br class=""></div></div></blockquote></div><br class=""></div></body></html>