Switched over substr and trim functions in str to be non-allocating, temporary renamed them to better track use-sites

This commit is contained in:
Marvin Löbel 2013-03-21 22:59:33 +01:00
parent ed25a674ac
commit ee2f3d9673
18 changed files with 130 additions and 124 deletions

View file

@ -67,7 +67,8 @@ pub impl Sudoku {
let mut g = vec::from_fn(10u, { |_i| ~[0u8, 0u8, 0u8, 0u8, 0u8, 0u8, 0u8, 0u8, 0u8] });
while !reader.eof() {
let comps = str::split_char(str::trim(reader.read_line()), ',');
let line = reader.read_line();
let comps = str::split_char(line.trim_DBGBRWD(), ',');
if vec::len(comps) == 3u {
let row = uint::from_str(comps[0]).get() as u8;
let col = uint::from_str(comps[1]).get() as u8;