Closed MartinKavik closed 1 year ago
Thanks! I'm back from vacation now, so I should be a bit more active.
Don't hurry, I hope you enjoyed your vacation :slightly_smiling_face:
Note: I've added one new commit with your suggested change and one related question in a comment.
Add
SignalExt::map_value_signal
.SignalVecExt::map_signal
.map_value_signal_const_signal
andmap_value_signal_const_map
. Tested also manually in my app.SignalExt::map_signal
orSignalExt::map_entry_signal
and pass alsoKey
or&Key
into the callback.Add
signal_map::always
.signal_vec::always
.Update
CHANGELOG.md
.Notes
cargo fmt (--all)
was formatting too much code so I just tried to follow the code style manually.src/signal/mod.rs
to compile the project (see the relatedTODO
).map_ref! .... => { ... return x ... }
no longer works, it has to be replaced with the code likemap_ref! .... => 'block: { ... break 'block x ... }
.