Which is faster?
Which is faster?
let mut variable: Type;
loop {
variable = value;
}
or
loop {
let variable: Type = value;
}
Which is faster?
let mut variable: Type;
loop {
variable = value;
}
or
loop {
let variable: Type = value;
}