<div dir="ltr">&gt; On 7 Oct 2017, at 04:24, Chris Lattner via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; wrote:<div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex">
&gt;<br>
&gt;&gt; These aren’t the forms I was suggesting, what I meant was:<br>
&gt;<br>
&gt; extension Int {<br>
&gt;   init(randomInRange: Countable{Closed}Range&lt;Int&gt;)<br>
&gt; }<br>
&gt;<br>
&gt; which gives:<br>
&gt;       let x = Int(randomInRange: 0..&lt;5)<br>
&gt;<br>
&gt; The point of this is that you’re producing an Int (or whatever type).  Regardless of whether the initializer is failable or not, this is the preferred way of creating a new value with some property: it is an initializer with a label.<br></blockquote><div><br></div><div>every now and then i found myself in a situation i want to use this preferred way, and i need a label... but i do not have anything to pass, e.g.:</div><div><br></div><div>let x = Int(random)                          // oops<br></div><div><br></div><div>has to resort to hacks: let x = Int(random: ())</div><div>or make it a non-initialiser: let x = Int.random or Int.random()</div><div><br></div><div>have you guys considered: func random&lt;T&gt;(...) -&gt; T</div><div>where it returns a different type based on a context?</div><div><br></div><div>Mike</div><div><br></div></div></div></div>