ori::prelude

Function without_state

Source
pub fn without_state<S, T, V>(view: V) -> impl View<(S, T)>
where V: View<T>,
Expand description

Create a new view unwrapping some state from the data.

This is equivalent to focus(|(data, _state), lens| lens(data), view).