pub enum DblNode<E, ProE, Sq> {
Cell(Sq),
Id(ProE),
Spine(E),
}
Expand description
A node in a double tree.
To be more precise, this enum is the type of a value carried by a node in a double tree.
Variants§
Cell(Sq)
A generic cell, given by a square in a virtual double graph.
Id(ProE)
The identity cell on a pro-edge in a virtual double graph.
Any node with an identity as its value should be a leaf node. While not logically required, we enforce this invariant to obtain a normal form for pastings in VDCs.
Spine(E)
An edge dangling from a nullary cell.
In a well-formed double tree, a spine node can be a child only of a nullary cell or of another spine node. Spines represent the operation of precomposing a nullary cell with an arrow to obtain another nullary cell, a degenerate case of composition in a virtual double category.
Implementations§
Source§impl<E, ProE, Sq> DblNode<E, ProE, Sq>
impl<E, ProE, Sq> DblNode<E, ProE, Sq>
Sourcepub fn dom<V>(
&self,
graph: &impl VDblGraph<V = V, E = E, ProE = ProE, Sq = Sq>,
) -> Path<V, ProE>where
ProE: Clone,
pub fn dom<V>(
&self,
graph: &impl VDblGraph<V = V, E = E, ProE = ProE, Sq = Sq>,
) -> Path<V, ProE>where
ProE: Clone,
Domain of node in the given virtual double graph.
Sourcepub fn cod<V>(
&self,
graph: &impl VDblGraph<V = V, E = E, ProE = ProE, Sq = Sq>,
) -> Path<V, ProE>where
ProE: Clone,
pub fn cod<V>(
&self,
graph: &impl VDblGraph<V = V, E = E, ProE = ProE, Sq = Sq>,
) -> Path<V, ProE>where
ProE: Clone,
Codomain of node in the given virtual double graph.
Sourcepub fn src<V>(
&self,
graph: &impl VDblGraph<V = V, E = E, ProE = ProE, Sq = Sq>,
) -> Path<V, E>where
E: Clone,
pub fn src<V>(
&self,
graph: &impl VDblGraph<V = V, E = E, ProE = ProE, Sq = Sq>,
) -> Path<V, E>where
E: Clone,
Source of node in the given virtual double graph.
Sourcepub fn tgt<V>(
&self,
graph: &impl VDblGraph<V = V, E = E, ProE = ProE, Sq = Sq>,
) -> Path<V, E>where
E: Clone,
pub fn tgt<V>(
&self,
graph: &impl VDblGraph<V = V, E = E, ProE = ProE, Sq = Sq>,
) -> Path<V, E>where
E: Clone,
Target of node in the given virtual double graph.
Sourcepub fn arity(
&self,
graph: &impl VDblGraph<E = E, ProE = ProE, Sq = Sq>,
) -> usize
pub fn arity( &self, graph: &impl VDblGraph<E = E, ProE = ProE, Sq = Sq>, ) -> usize
Arity of node in the given virtual double graph.
Sourcepub fn contained_in(
&self,
graph: &impl VDblGraph<E = E, ProE = ProE, Sq = Sq>,
) -> bool
pub fn contained_in( &self, graph: &impl VDblGraph<E = E, ProE = ProE, Sq = Sq>, ) -> bool
Is the node contained in the given virtual double graph?
Trait Implementations§
impl<E: Eq, ProE: Eq, Sq: Eq> Eq for DblNode<E, ProE, Sq>
impl<E, ProE, Sq> StructuralPartialEq for DblNode<E, ProE, Sq>
Auto Trait Implementations§
impl<E, ProE, Sq> Freeze for DblNode<E, ProE, Sq>
impl<E, ProE, Sq> RefUnwindSafe for DblNode<E, ProE, Sq>
impl<E, ProE, Sq> Send for DblNode<E, ProE, Sq>
impl<E, ProE, Sq> Sync for DblNode<E, ProE, Sq>
impl<E, ProE, Sq> Unpin for DblNode<E, ProE, Sq>
impl<E, ProE, Sq> UnwindSafe for DblNode<E, ProE, Sq>
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,
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.