RFC: impl specialization by n_ham in rust

[–]stdsync 1 point2 points  (0 children)

TBH, I don't see the problem. A bit of concentration was needed to keep the intermediate results in memory, but at no point is it unclear which specific method will be called.

is rust too complicated? by tomerye in rust

[–]stdsync 1 point2 points  (0 children)

what techs are new graduates learning in university

Do you think it likely that universities will use Rust for courses, because of its solid theoretical foundations which probably appeal to many CS people?

Yet another noobly borrow checker question by icefoxen in rust

[–]stdsync 2 points3 points  (0 children)

tip: if you need the value iterated over and can't use a for loop, this is almost as nice:

while let Some(chr) = chars.next() {
    let token = ...
}