pub trait MutMapping: Mapping {
// Required methods
fn get(&self, x: &Self::Dom) -> Option<&Self::Cod>;
fn set(&mut self, x: Self::Dom, y: Self::Cod) -> Option<Self::Cod>;
fn unset(&mut self, x: &Self::Dom) -> Option<Self::Cod>;
// Provided method
fn update(
&mut self,
x: Self::Dom,
maybe_y: Option<Self::Cod>,
) -> Option<Self::Cod> { ... }
}
Expand description
A mutable mapping.
Besides being mutable, such a mapping is also assumed to own its values (how else could they be mutated?) and thus also allows access by reference.
Required Methods§
Sourcefn get(&self, x: &Self::Dom) -> Option<&Self::Cod>
fn get(&self, x: &Self::Dom) -> Option<&Self::Cod>
Gets the value of the mapping at a point possibly in the domain.
The same as apply
but returns by reference rather than
by value.