catlog::zero::column

Trait Mapping

Source
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.

Required Associated Types§

Source

type Dom: Eq + Clone

Type of elements in domain of mapping.

Source

type Cod: Eq + Clone

Type of elements in codomain of mapping.

Required Methods§

Source

fn apply(&self, x: &Self::Dom) -> Option<Self::Cod>

Applies the mapping at a point possibly in the domain.

Provided Methods§

Source

fn is_set(&self, x: &Self::Dom) -> bool

Is the mapping defined at a point?

The default implementation checks whether apply returns something. Often this method can be given a more efficient implementation that avoids allocating.

Implementors§

Source§

impl Mapping for SkelIndexedColumn

Source§

impl<K, V, S> Mapping for HashColumn<K, V, S>
where K: Eq + Hash + Clone, V: Eq + Clone, S: BuildHasher,

Source§

type Dom = K

Source§

type Cod = V

Source§

impl<K, V, S> Mapping for IndexedHashColumn<K, V, S>
where K: Eq + Hash + Clone, V: Eq + Hash + Clone, S: BuildHasher,

Source§

type Dom = K

Source§

type Cod = V

Source§

impl<T: Eq + Clone> Mapping for VecColumn<T>

Source§

impl<T: Eq + Hash + Clone> Mapping for IndexedVecColumn<T>