CSV Documentation

Lars T. Kyllingstad public at kyllingen.NOSPAMnet
Thu Aug 11 00:41:35 PDT 2011


On Thu, 11 Aug 2011 02:36:45 +0000, Jesse Phillips wrote:

> I'm hoping to be able to get a review of the documentation in terms of
> content. The things I'm interested in.
> 
> Can you easily identify it's capabilities? Does it answer questions if
> you are interested in how do do something? Opinions on the TODO items?
> Do I need more examples, fewer?
> Is the documentation too long?
> 
> I'm not looking to add functionality, I'm interested in opinions of the
> interface/naming for what it is capable of. I think other functionality
> can be added onto the interface.
> 
> I'll be working on a Phobos branch so that it is ready for a true
> review, vote, and being pulled in.
> 
> The URL for documentation is:
> http://nascent.freeshell.org/programming/D/csv.html

Instead of stuff like

    foreach(cell; record) {
        assert(ans[count] == cell);
        count++;
    }

may I suggest you write

    import std.algorithm;
    assert (equal(record, ans));

? :)

-Lars


More information about the Digitalmars-d mailing list