Re: Comparing mixed expression and type tuples. How?

2010-05-25 Thread bearophile
Simen kjaeraas Wrote: > static assert( is( TypeTuple!( int, "a" ) == TypeTuple!( int, "a" ) ); Look for this problem in the digitalmars.D.learn group, because I have seen this problem recently solved here (I don't remember the solution, it was easy). Bye, bearophile

Re: Installing D on MacOS X

2010-05-25 Thread Ellery Newcomer
On 05/25/2010 08:50 AM, Duke Normandin wrote: Hey... 2 hours into my D language experience Got some instructions from th digitalmars-d list for getting D installed on my Intel OS X box. Still having problems: dnormandin@ ~/programming/dmd2/code 06:40 am>> dmd firstApp.d ld warning: in /us

Re: Installing D on MacOS X

2010-05-25 Thread Steven Schveighoffer
On Tue, 25 May 2010 09:50:52 -0400, Duke Normandin wrote: Hey... 2 hours into my D language experience Got some instructions from th digitalmars-d list for getting D installed on my Intel OS X box. Still having problems: dnormandin@ ~/programming/dmd2/code 06:40 am >> dmd firstApp.d ld

Installing D on MacOS X

2010-05-25 Thread Duke Normandin
Hey... 2 hours into my D language experience Got some instructions from th digitalmars-d list for getting D installed on my Intel OS X box. Still having problems: dnormandin@ ~/programming/dmd2/code 06:40 am >> dmd firstApp.d ld warning: in /usr/local/gnat/lib/libgcc_s.10.5.dylib, missing re

Comparing mixed expression and type tuples. How?

2010-05-25 Thread Simen kjaeraas
import std.typetuple; static assert( is( TypeTuple!( int, "a" ) == TypeTuple!( int, "a" ) ); The above code asserts. Is there some other way to compare mixed tuples, or should i roll my own comparison function? -- Simen