pub fn bind_mapped<S: Clone + PartialEq + 'static, T: 'static>( source: &Observable<S>, map: impl Fn(&S) -> T + 'static, ) -> Binding<T>
Create a mapped binding: source value transformed by map.
source
map