pub trait Mapping {
type Dom: Eq + Clone;
type Cod: Eq + Clone;
// Required method
fn apply(&self, x: &Self::Dom) -> Option<Self::Cod>;
// Provided method
fn is_set(&self, x: &Self::Dom) -> bool { ... }
}
Expand description
A functional mapping.
A mapping sends values of type Dom
to values of type
Cod
. Unlike a function, a mapping need not be defined on its
whole domain. A mapping is thus more like a partial function, but it does not
actually know its intended domain of definition. If needed, that information
should be provided separately, preferably as a Set
.
Neither the domain nor the codomain of the mapping are assumed to be finite.