Fast MSB to LSB

2016-07-17 Thread Rufus Smith via Digitalmars-d-learn
Is there any MSB to LSB and vice versa in phobos? Or some tricks with templates that make it fast as possible?

Re: Using external libraries the correct way

2016-07-17 Thread NX via Digitalmars-d-learn
On Sunday, 17 July 2016 at 17:52:59 UTC, solidstate1991 wrote: Up to this day, I have to use them by dragging the source into my project. When I tried to import imageformats, the compiler looks up for the file imageformats.d and fails to finish the program. I'm not using command line for

Re: Using external libraries the correct way

2016-07-17 Thread Edwin van Leeuwen via Digitalmars-d-learn
On Sunday, 17 July 2016 at 17:52:59 UTC, solidstate1991 wrote: Up to this day, I have to use them by dragging the source into my project. When I tried to import imageformats, the compiler looks up for the file imageformats.d and fails to finish the program. I'm not using command line for

Using external libraries the correct way

2016-07-17 Thread solidstate1991 via Digitalmars-d-learn
Up to this day, I have to use them by dragging the source into my project. When I tried to import imageformats, the compiler looks up for the file imageformats.d and fails to finish the program. I'm not using command line for compiling, I use Xamarin with mono-D instead.

Re: Is there a way to "see" source code generated by templates after a compile?

2016-07-17 Thread Stefan Koch via Digitalmars-d-learn
On Sunday, 17 July 2016 at 14:54:34 UTC, zabruk70 wrote: On Sunday, 17 July 2016 at 11:14:39 UTC, Stefan Koch wrote: If you want to see template expansions you have to wait a little longer. Wow! Is this really possible?! So long time several peoples asked this... I am reasonably sure that

Re: Is there a way to "see" source code generated by templates after a compile?

2016-07-17 Thread zabruk70 via Digitalmars-d-learn
On Sunday, 17 July 2016 at 11:14:39 UTC, Stefan Koch wrote: If you want to see template expansions you have to wait a little longer. Wow! Is this really possible?! So long time several peoples asked this...

Re: Is there a way to "see" source code generated by templates after a compile?

2016-07-17 Thread WhatMeWorry via Digitalmars-d-learn
On Sunday, 17 July 2016 at 11:14:39 UTC, Stefan Koch wrote: On Sunday, 17 July 2016 at 05:57:52 UTC, WhatMeWorry wrote: I don't suppose there's a way to "see" source code generated by templates after a compile but before execution? Or does the compiler generate it to a lower level on the

Re: Is there a way to "see" source code generated by templates after a compile?

2016-07-17 Thread Stefan Koch via Digitalmars-d-learn
On Sunday, 17 July 2016 at 05:57:52 UTC, WhatMeWorry wrote: I don't suppose there's a way to "see" source code generated by templates after a compile but before execution? Or does the compiler generate it to a lower level on the fly; thus losing the source code? I'm assuming no because

Re: Is there a way to "see" source code generated by templates after a compile?

2016-07-17 Thread rikki cattermole via Digitalmars-d-learn
On 17/07/2016 5:57 PM, WhatMeWorry wrote: I don't suppose there's a way to "see" source code generated by templates after a compile but before execution? Or does the compiler generate it to a lower level on the fly; thus losing the source code? I'm assuming no because if there were a way,

Is there a way to "see" source code generated by templates after a compile?

2016-07-17 Thread WhatMeWorry via Digitalmars-d-learn
I don't suppose there's a way to "see" source code generated by templates after a compile but before execution? Or does the compiler generate it to a lower level on the fly; thus losing the source code? I'm assuming no because if there were a way, I'd of come across it by now :) Now