|
|
|
|
|
by ______-_-______
1500 days ago
|
|
Big fan of your work, Raph. One small typo: > {anonymous function of type FnMut(u32) -> ()} It looks like the param type should be `&mut u32`. And in that simple case the whole thing could probably just be `fn(&mut u32)` since the closure doesn't capture any locals. |
|