Steven Schveighoffer wrote:
auto reader = file.byLine!("/[.,]/")();

Why specify anything at compile time when a user could reasonably generate the value at runtime?

auto reader = file.byLine(readConfig().separator);

Reply via email to