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