2个版本
0.1.1 | 2024年3月14日 |
---|---|
0.1.0 | 2024年2月13日 |
#405 在 过程宏
每月 63 次下载
6KB
103 行
MutableX
为FutureSignals创建X大小的可变信号
用法
#[cfg(test)]
pub mod test {
use futures_signals::signal::{Mutable, SignalExt};
use mutablex::mutable_x;
#[test]
pub fn basic() {
mutable_x!(2);
let stream_a = Mutable::new(1);
let stream_b = Mutable::new(2);
let combination = Mutable2::new(stream_a.clone(), stream_b.clone());
let _ = combination.map(|(a, b)| {
println!("{} {}", a, b);
});
stream_a.set(3);
stream_b.set(4);
}
}
依赖关系
~1.6–2.4MB
~49K SLoC