pub enum List {
Plain,
Symmetric,
Coproduct,
Product,
Biproduct,
}
Expand description
List modalities available in a modal double theory.
There is just one list, or free monoid, monad on the category of sets, but the double category of sets admits, besides the plain list double monad, a number of variations decorating the spans of lists with extra combinatorial data.
Variants§
Plain
Lists of objects and morphisms (of same length).
Symmetric
Lists of objects and morphisms, allowing permutation of the codomain list.
Coproduct
Lists of objects and morphisms, allowing reindexing of the codomain list.
This modality is a skeletized version of the “finite family”, or free finite coproduct completion, construction.
Product
Lists of objects and morphisms, allowing reindexing of the domain list.
This modality is a skeletized version of the free finite product completion.
Biproduct
Lists of objects and morphisms, allowing independent reindexing of both domain and codomain lists.
This modality is a version of the free finite biproduct completion, equivalent to freely enriching in commutative monoids and then applying the matrix construction (Mac Lane, Exercise VIII.2.6) on such an enriched category.
Trait Implementations§
impl Copy for List
impl Eq for List
impl StructuralPartialEq for List
Auto Trait Implementations§
impl Freeze for List
impl RefUnwindSafe for List
impl Send for List
impl Sync for List
impl Unpin for List
impl UnwindSafe for List
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
self
from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
self
is actually part of its subset T
(and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
self.to_subset
but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self
to the equivalent element of its superset.