<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body dir="auto">
I made changes last night that uses methods rather than properties if that’s all you’re worried about.<br>
<br>
<div id="AppleMailSignature">Sent from my iPhone</div>
<div><br>
On Jan 8, 2018, at 15:27, David Hart via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; wrote:<br>
<br>
</div>
<blockquote type="cite">
<div>I much prefer the API from Nate Cook compared to the previous proposal. Its simpler, while still very powerful, and closer to Swift conventions (method instead of property).<br class="">
<div><br class="">
<blockquote type="cite" class="">
<div class="">On 8 Jan 2018, at 20:02, Nate Cook 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 style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class="">
I created a playground to explore this question, starting with a minimal subset of the proposal’s additions and building from there. The attached playground demonstrates what’s possible with this subset on the first page, then uses subsequent pages to explore
 how the main random facilities of the C&#43;&#43; STL work under this model. (In my opinion, they work pretty well!)
<div class=""><br class="">
</div>
<div class="">The subset in the playground has three main differences from the proposal:</div>
<div class="">&nbsp;- It doesn't include a <font face="Menlo" class="">Randomizable</font> protocol or a
<font face="Menlo" class="">random</font> property on numeric&nbsp;types.<br class="">
&nbsp;- It doesn't include the static <font face="Menlo" class="">random(in:)</font> methods on numeric types, either.<br class="">
&nbsp;- The <font face="Menlo" class="">RandomNumberGenerator</font> protocol doesn't have an associated type. Instead, it&nbsp;requires all conforming types to produce
<font face="Menlo" class="">UInt64</font> values.<br class="">
<br class="">
</div>
<div class="">I’ve tried to include a bit of real-world usage in the playground to demonstrate what writing code would look like with these additions. Please take a look!</div>
<div class=""><br class="">
</div>
<div class="">Nate</div>
<div class=""><br class="">
</div>
<div class=""></div>
</div>
<span id="cid:5DA36848-BA9E-47D7-A914-2A585A07AED0@home">&lt;Random.playground.zip&gt;</span>
<div style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class="">
<div class=""></div>
<div class=""><br class="">
</div>
<div class="">
<div class="">
<blockquote type="cite" class="">
<div class="">On Dec 2, 2017, at 9:50 PM, Dave Abrahams 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 dir="auto" class="">I don’t have much to say about this other than that I think the discussion seems way too narrow, focusing on spelling rather than on functionality and composability. &nbsp;I consider the “generic random number library” design to be a mostly-solved
 problem, in&nbsp;<span style="background-color: rgba(255, 255, 255, 0);" class="">the C&#43;&#43; standard library (<a href="http://en.cppreference.com/w/cpp/numeric/random" class="">http://en.cppreference.com/w/cpp/numeric/random</a>). &nbsp;</span>Whatever goes into the Swift
 standard library does not need to have all those features right away, but should support being extended into something having the same general shape. IMO the right design strategy is to
<u class="">implement and use</u> a Swift version of C&#43;&#43;’s facilities and only then consider proposing [perhaps a subset of] that design for standardization in Swift.
<div class="">
<div class=""><br class="">
</div>
<div class="">Sent from my iPad
<div class=""><br class="">
On Dec 2, 2017, at 5:12 PM, Kyle Murray via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a>&gt; wrote:<br class="">
<br class="">
</div>
<blockquote type="cite" class="">
<div class=""><br class="">
<div class="">
<blockquote type="cite" class="">
<div class="">On Dec 2, 2017, at 6:02 PM, Xiaodi Wu 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=""><span style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; float: none; display: inline !important;" class="">Instead,
 we ought to make clear to users both the features and the limitations of this API, to encourage use where suitable and to discourage use where unsuitable.</span></div>
</blockquote>
</div>
<br class="">
<div class="">I like that you're considering the balance here. I've been lightly following this thread and want to add my thoughts on keeping crypto and pseudorandomness out of the name of at least one
<font face="Menlo" class="">random</font> API intended for general use.</div>
<div class=""><br class="">
</div>
<div class="">For someone who doesn't know or care about the subtleties of insecure or pseudorandom numbers, I'm not sure that the name
<font face="Menlo" class="">insecureRandom</font> is effectively much different than
<font face="Menlo" class="">badRandom</font>, at least in terms of the information it conveys to non-experts. To Greg's point, that's the opposite of the signal that the API name should suggest because it's what most people should use most of the time. As you
 say, this API is being designed for general use.</div>
<div class=""><br class="">
</div>
<div class="">There's a cost to adding extra complexity to names, too. I don't think it's far-fetched to suspect that people who find
<font face="Menlo" class="">insecureRandom</font> in an autocomplete listing or search will think &quot;Where's the plain random function?&quot;... and then go looking for a community extension that will inevitably provide a trivial alias:&nbsp;<font face="Menlo" class="">func
 random() { return insecureRandom() }</font>. That's the sort of adoption I'd expect from something for new programmers, like Swift Playgrounds. Someone's introduction to randomness in programming should probably involve no more than a straightforward mapping
 from the elementary definition, rather than forcing a teaching moment from more advanced math.</div>
<div class=""><br class="">
</div>
<div class="">I think there are better places for caveat information than in the API names themselves; documentation being one clear destination. This is in contrast with&nbsp;<font face="Menlo" class="">Unsafe*Pointer</font>, where the safety element is critical
 enough to be elevated to be more than caveat-level information. You can go really far and create really cool things before these caveats start to apply. Using randomness as a black box in an intro programming environment seems like a much more common scenario
 than someone attempting to roll their first crypto by only reading API names and hoping for the best.</div>
<div class=""><br class="">
</div>
<div class="">-Kyle</div>
</div>
</blockquote>
<blockquote type="cite" class="">
<div class=""><span class="">_______________________________________________</span><br class="">
<span class="">swift-evolution mailing list</span><br class="">
<span class=""><a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a></span><br class="">
<span class=""><a href="https://lists.swift.org/mailman/listinfo/swift-evolution" class="">https://lists.swift.org/mailman/listinfo/swift-evolution</a></span><br class="">
</div>
</blockquote>
</div>
</div>
</div>
_______________________________________________<br class="">
swift-evolution mailing list<br class="">
<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a><br class="">
<a href="https://lists.swift.org/mailman/listinfo/swift-evolution" class="">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br class="">
</div>
</blockquote>
</div>
<br class="">
</div>
</div>
_______________________________________________<br class="">
swift-evolution mailing list<br class="">
<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a><br class="">
<a href="https://lists.swift.org/mailman/listinfo/swift-evolution">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br class="">
</div>
</blockquote>
</div>
<br class="">
</div>
</blockquote>
<blockquote type="cite">
<div><span>_______________________________________________</span><br>
<span>swift-evolution mailing list</span><br>
<span><a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a></span><br>
<span><a href="https://lists.swift.org/mailman/listinfo/swift-evolution">https://lists.swift.org/mailman/listinfo/swift-evolution</a></span><br>
</div>
</blockquote>
</body>
</html>