Converting a list of words or array of values to variables at compile time

2015-11-25 Thread Louie F via Digitalmars-d-learn
I found out that compile time optimization is quite useful specially for database queries, instead of it being generated at every call, it can be generated like I typed it using compile time optimizations... so I thought, Is it possible to convert an array of values or a list from a file to

Re: Converting a list of words or array of values to variables at compile time

2015-11-25 Thread drug via Digitalmars-d-learn
On 26.11.2015 09:33, Louie F wrote: I found out that compile time optimization is quite useful specially for database queries, instead of it being generated at every call, it can be generated like I typed it using compile time optimizations... so I thought, Is it possible to convert an array of