I am experimenting with closing:
fn call_it(f: ||) {
f();
}
let klosure = || println("closure!");
call_it(klosure);
call_it(klosure);
Passing cllosure to call_it () twice causes a compiler error due to moving the closure value:
closures.rs:16:13: 16:20 error: use of moved value: `klosure`
closures.rs:16 call_it(klosure);
^~~~~~~
closures.rs:15:13: 15:20 note: `closure` moved here because it has type `||`, which is a non-copyable stack closure (capture it in a new closure, e.g. `|x| f(x)`, to override)
closures.rs:15 call_it(klosure);
^~~~~~~
The compiler does make a suggestion on how to solve the problem, but I did not understand how to successfully apply it.
Any suggestions ?: D
source
share