pub fn use_or<S1, S2>(a: S1, b: S2) -> Signal<bool>where S1: Into<MaybeSignal<bool>>, S2: Into<MaybeSignal<bool>>,
Reactive OR condition.
OR
Link to Demo
let (a, set_a) = create_signal(true); let (b, set_b) = create_signal(false); let a_or_b = use_or(a, b);