(no title)
______-_-______ | 3 years ago
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.
raphlinus|3 years ago