Thanks for all your help! <div><br></div><div>-Mike<br><div><br><div class="gmail_quote">On Mon, Oct 18, 2010 at 6:21 PM, Simen kjaeraas <span dir="ltr">&lt;<a href="mailto:simen.kjaras@gmail.com">simen.kjaras@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><div class="im">Mike Chaten &lt;<a href="mailto:mchaten@gmail.com" target="_blank">mchaten@gmail.com</a>&gt; wrote:<br>

<br>
</div><div class="im"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
I was under the impression that alias this just was shorthand for<br>
Class Foo {<br>
int x;<br>
alias x this;<br>
}<br>
Foo foo =  new Foo<br>
foo = 9; // foo.x = 9<br>
Foo Foo = 9 // null.x =9;<br>
</blockquote>
<br></div>
Not just. this would also work:<br>
<br>
int n = foo;<br>
// void bar( int n ) {}<br>
bar( foo );<div class="im"><br>
<br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Also, for opCast, doesnt that only work for going from Foo to int and not<br>
the other way around?<br>
</blockquote>
<br></div>
Indeed. For implicit casts to Foo, I don&#39;t know what, if anything, works.<br>
<br>
void baz( Foo f ) {}<br>
baz( 3 ); // How?<br>
<br>
Likely, there is no such functionality in D, at least for the moment.<br>
<br>
-- <br><font color="#888888">
Simen<br>
</font></blockquote></div><br></div></div>