Function create_write_slice

pub fn create_write_slice<T, O>(
    signal: RwSignal<T>,
    setter: impl Fn(&mut T, O) + Copy + Send + Sync + 'static,
) -> SignalSetter<O>
where T: Send + Sync + 'static,
Expand description

Creates a setter to access one slice of a signal. This is equivalent to the write-only half of create_slice.