factor/extra/csv/csv-docs.factor

15 lines
384 B
Factor
Raw Normal View History

2008-04-17 16:29:04 -04:00
USING: help.syntax help.markup kernel prettyprint sequences ;
IN: csv
HELP: csv
{ $values { "stream" "a stream" }
{ "rows" "an array of arrays of fields" } }
{ $description "parses a csv stream into an array of row arrays"
} ;
HELP: csv-row
{ $values { "stream" "a stream" }
{ "row" "an array of fields" } }
{ $description "parses a row from a csv stream"
} ;