On success, the function returns nothing (void), and all the members of the tuple are populated.
std.std.exception.Exception. on failure to correctly parse the string.
string s = "Hello World 42"; Tuple!(string,string,int) t; parseDelimited(s,' ',t); assert(t[0]=="Hello"); assert(t[1]=="World"); assert(t[2]==42);
Notes:
Parses string input, delimited by character delimiter, into a tuple of variables $(arg).