<html><head><meta http-equiv="content-type" content="text/html; charset=utf-8"></head><body dir="auto"><div><span></span></div><div><meta http-equiv="content-type" content="text/html; charset=utf-8">Hi,<div><br><blockquote type="cite"><div><div><blockquote type="cite" class=""><div class=""><div dir="ltr" class=""><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"><div dir="auto" style="word-wrap:break-word;line-break:after-white-space" class=""><div style="word-wrap:break-word;line-break:after-white-space" class=""><div class=""><div class="">This is redundant. In order to pick a random element, you’re saying I should have to do “Int.random(0 ..&lt; 10)”? The redundancy here is that I have to specify Int twice: once for the “.random” call, and again for the type of the range. We can do better than that.</div></div></div></div></blockquote></div></div></div></div></blockquote><div><br class=""></div><div>I don’t see how this is redundant—do you mean that you’d need to write out the type name instead of writing `(0..&lt;10).random()!`? I continue to be of the opinion that picking a random integer/floating-point value/Boolean and picking a random element from a collection are two different operations.</div></div></div></blockquote><br></div><div>Well, I don‘t see a big difference beteeen ranges and collections here. We can support both with the same syntax:</div><div><br></div><div>let a = random.draw(from: 1...3)</div><div>let b = random.draw(from: [1, 2, 3])</div><div><br></div><div>— Martin</div></div></body></html>