On Thu, 16 Feb 2012 14:50:22 -0600, Robik <[email protected]> wrote:
Greetings.
[snip]

        // write foo.name1 value
        writeln(ini.getSection("foo")["name1"].value);

I'd recommend using opDispatch to enable the following syntax:

writeln( ini.foo.name1 );

Skimming the code, I see a lot of re-implementation of std.algorithm, to say 
nothing of the more general issue of using O(N) linear search instead of an 
O(1) hash table.

Reply via email to