On success, returns an array of tuples, based on template parameters.
std.std.exception.Exception. on failure to correctly parse a line. std.std.file.FileException. on I/O failures.
// Load a text file, tab-delimited, with three numeric columns. auto data = tabularArray!('\t', int,int,int)("file.txt"); // data[0] will be of type Tuple!(int,int,int)
Loads a delimited text file, line-by-line, parses the line into fields, returns an array of fields.