Currently it's just splitting on whitespace (i.e. is equivalent to splitting with `regex!("\s+")`). Preferably it should be using http://www.unicode.org/reports/tr29/#Word_Boundaries (The old behaviour is easy to replicate with the above regex, or with `s.split(|c: char| c.is_whitespace()).filter(|s| !s.is_empty())`.)