[][src]Macro futures_signals::map_mut

macro_rules! map_mut {
    ($($input:tt)*) => { ... };
}

map_mut is exactly the same as map_ref, except it gives mutable references (map_ref gives immutable references).

map_mut is almost never useful, and it's a little slower than map_ref, so it's highly recommended to use map_ref instead.