pub trait VDCWithComposites: VDblCategory {
// Required methods
fn composite_ext(
&self,
path: Path<Self::Ob, Self::Pro>,
) -> Option<Self::Cell>;
fn through_composite(
&self,
cell: Self::Cell,
range: Range<usize>,
) -> Option<Self::Cell>;
// Provided methods
fn has_composite(&self, path: &Path<Self::Ob, Self::Pro>) -> bool { ... }
fn has_unit(&self, x: &Self::Ob) -> bool { ... }
fn composite2_ext(&self, m: Self::Pro, n: Self::Pro) -> Option<Self::Cell> { ... }
fn composite(&self, path: Path<Self::Ob, Self::Pro>) -> Option<Self::Pro> { ... }
fn composite2(&self, m: Self::Pro, n: Self::Pro) -> Option<Self::Pro> { ... }
fn unit_ext(&self, x: Self::Ob) -> Option<Self::Cell> { ... }
fn unit(&self, x: Self::Ob) -> Option<Self::Pro> { ... }
fn through_unit(&self, cell: Self::Cell, index: usize) -> Option<Self::Cell> { ... }
}
Expand description
A virtual double category with some or all chosen composites.
Like anything defined by a universal property, composites in a VDC are not strictly unique if they exist but they are unique up to unique isomorphism. As often when working with (co)limits, this trait assumes that a choice of composites has been made whenever they are exist. We do not attempt to “recognize” whether an arbitrary cell has the relevant universal property.
Required Methods§
Sourcefn composite_ext(&self, path: Path<Self::Ob, Self::Pro>) -> Option<Self::Cell>
fn composite_ext(&self, path: Path<Self::Ob, Self::Pro>) -> Option<Self::Cell>
Gets the chosen cell witnessing a composite of proarrows, if there is one.
Such a cell is called an **extension or opcartesian cell.
Sourcefn through_composite(
&self,
cell: Self::Cell,
range: Range<usize>,
) -> Option<Self::Cell>
fn through_composite( &self, cell: Self::Cell, range: Range<usize>, ) -> Option<Self::Cell>
Factorizes a cell through a composite of proarrows.
The subpath of the domain path at the given range is replaced with the composite of that subpath, if the composite exists. This is the universal property of the composite.
Provided Methods§
Sourcefn has_composite(&self, path: &Path<Self::Ob, Self::Pro>) -> bool
fn has_composite(&self, path: &Path<Self::Ob, Self::Pro>) -> bool
Does the path of proarrows have a chosen composite?
The default implementation checks whether composite
returns something.
Sourcefn has_unit(&self, x: &Self::Ob) -> bool
fn has_unit(&self, x: &Self::Ob) -> bool
Does the object have a chosen unit?
The default implementation checks whether unit
returns
something.
Sourcefn composite2_ext(&self, m: Self::Pro, n: Self::Pro) -> Option<Self::Cell>
fn composite2_ext(&self, m: Self::Pro, n: Self::Pro) -> Option<Self::Cell>
Gets the chosen cell witnessing a composite of two proarrows, if there is one.
Sourcefn composite(&self, path: Path<Self::Ob, Self::Pro>) -> Option<Self::Pro>
fn composite(&self, path: Path<Self::Ob, Self::Pro>) -> Option<Self::Pro>
Gets the chosen composite for a path of proarrows, if there is one.
The default implementation returns the codomain of the extension cell from
composite_ext
.
Sourcefn composite2(&self, m: Self::Pro, n: Self::Pro) -> Option<Self::Pro>
fn composite2(&self, m: Self::Pro, n: Self::Pro) -> Option<Self::Pro>
Gets the chosen composite for a pair of consecutive proarrows, if there is one.
Sourcefn unit_ext(&self, x: Self::Ob) -> Option<Self::Cell>
fn unit_ext(&self, x: Self::Ob) -> Option<Self::Cell>
Gets the chosen extension cell for an object, if there is one.
Such a cell is an extension or opcartesian cell in the nullary case.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.