pub enum Path<V, E> {
Id(V),
Seq(NonEmpty<E>),
}
Expand description
A path in a graph or category.
This definition by cases can be compared with the perhaps more obvious definition:
struct Path<V, E> {
start: V,
end: V, // Optional: more symmetric but also more redundant.
seq: Vec<E>,
}
Not only does the single struct store redundant (hence possibly inconsistent)
information when the sequence of edges is nonempty, one will often need to do a
case analysis on the edge sequence anyway to determine whether, say,
fold
can be called or the result of
reduce
is valid. Thus, it seems better to reify
the two cases in the data structure itself.
Variants§
Id(V)
The identity, or empty, path at a vertex.
Seq(NonEmpty<E>)
A nontrivial path, comprising a non-empty vector of consecutive edges.
Implementations§
Source§impl<V, E> Path<V, E>
impl<V, E> Path<V, E>
Sourcepub fn collect<I>(iter: I) -> Option<Self>where
I: IntoIterator<Item = E>,
pub fn collect<I>(iter: I) -> Option<Self>where
I: IntoIterator<Item = E>,
Constructs a path from an iterator over edges.
Returns None
if the iterator is empty.
Sourcepub fn from_vec(vec: Vec<E>) -> Option<Self>
pub fn from_vec(vec: Vec<E>) -> Option<Self>
Constructs a path from a vector of edges.
Returns None
if the vector is empty.
Sourcepub fn repeat_n(v: V, e: E, n: usize) -> Selfwhere
E: Clone,
pub fn repeat_n(v: V, e: E, n: usize) -> Selfwhere
E: Clone,
Constructs a path by repeating an edge n
times.
The edge should have the same source and target, namely the first argument.
Sourcepub fn iter(&self) -> impl Iterator<Item = &E>
pub fn iter(&self) -> impl Iterator<Item = &E>
Iterates over edges in the path, if any.
This method is a one-sided inverse to Path::collect
.
Sourcepub fn only(self) -> Option<E>
pub fn only(self) -> Option<E>
Returns the unique edge in a path of length 1.
This method is a one-sided inverse to Path::single
.
Sourcepub fn src(&self, graph: &impl Graph<V = V, E = E>) -> Vwhere
V: Clone,
pub fn src(&self, graph: &impl Graph<V = V, E = E>) -> Vwhere
V: Clone,
Source of the path in the given graph.
Assumes that the path is contained in the graph.
Sourcepub fn tgt(&self, graph: &impl Graph<V = V, E = E>) -> Vwhere
V: Clone,
pub fn tgt(&self, graph: &impl Graph<V = V, E = E>) -> Vwhere
V: Clone,
Target of the path in the given graph.
Assumes that the path is contained in the graph.
Sourcepub fn concat_in(
self,
graph: &impl Graph<V = V, E = E>,
other: Self,
) -> Option<Self>
pub fn concat_in( self, graph: &impl Graph<V = V, E = E>, other: Self, ) -> Option<Self>
Concatenates this path with another path in the graph.
This methods checks that the two paths are compatible (the target of this
path equals the source of the other path) and it assumes that both paths
are contained in the graph, which should be checked with
contained_in
if in doubt. Thus, when returned, the
concatenated path is also a valid path.
Sourcepub fn contained_in(&self, graph: &impl Graph<V = V, E = E>) -> boolwhere
V: Eq,
pub fn contained_in(&self, graph: &impl Graph<V = V, E = E>) -> boolwhere
V: Eq,
Is the path contained in the given graph?
Sourcepub fn is_simple(&self) -> bool
pub fn is_simple(&self) -> bool
Returns whether the path is simple.
On our definition, a path is simple if it has no repeated edges.
Sourcepub fn reduce<FnV, FnE>(self, fv: FnV, fe: FnE) -> E
pub fn reduce<FnV, FnE>(self, fv: FnV, fe: FnE) -> E
Reduces a path using functions on vertices and edges.
Sourcepub fn map<CodV, CodE, FnV, FnE>(self, fv: FnV, fe: FnE) -> Path<CodV, CodE>
pub fn map<CodV, CodE, FnV, FnE>(self, fv: FnV, fe: FnE) -> Path<CodV, CodE>
Maps a path over functions on vertices and edges.
Sourcepub fn partial_map<CodV, CodE, FnV, FnE>(
self,
fv: FnV,
fe: FnE,
) -> Option<Path<CodV, CodE>>
pub fn partial_map<CodV, CodE, FnV, FnE>( self, fv: FnV, fe: FnE, ) -> Option<Path<CodV, CodE>>
Maps a path over partial functions on vertices and edges.
Trait Implementations§
Source§impl<'de, V, E> Deserialize<'de> for Path<V, E>where
V: Deserialize<'de>,
E: Deserialize<'de>,
impl<'de, V, E> Deserialize<'de> for Path<V, E>where
V: Deserialize<'de>,
E: Deserialize<'de>,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl<V, E> FromWasmAbi for Path<V, E>where
Self: DeserializeOwned,
impl<V, E> FromWasmAbi for Path<V, E>where
Self: DeserializeOwned,
Source§impl<V, E> IntoIterator for Path<V, E>
Converts the path into an iterater over its edges.
impl<V, E> IntoIterator for Path<V, E>
Converts the path into an iterater over its edges.
Source§impl<V, E> IntoWasmAbi for Path<V, E>
impl<V, E> IntoWasmAbi for Path<V, E>
Source§impl<V, E> OptionFromWasmAbi for Path<V, E>where
Self: DeserializeOwned,
impl<V, E> OptionFromWasmAbi for Path<V, E>where
Self: DeserializeOwned,
Source§impl<V, E> OptionIntoWasmAbi for Path<V, E>
impl<V, E> OptionIntoWasmAbi for Path<V, E>
Source§impl<V, E> RefFromWasmAbi for Path<V, E>where
Self: DeserializeOwned,
impl<V, E> RefFromWasmAbi for Path<V, E>where
Self: DeserializeOwned,
Source§type Abi = <JsType as RefFromWasmAbi>::Abi
type Abi = <JsType as RefFromWasmAbi>::Abi
Self
are recovered from.Source§impl<V, E> Tsify for Path<V, E>
impl<V, E> Tsify for Path<V, E>
const DECL: &'static str = "/**\n * A path in a [graph](Graph) or [category](crate::one::category::Category).\\n\\nThis definition by cases can be compared with the perhaps more obvious\\ndefinition:\\n\\n```\\nstruct Path<V, E> {\\n start: V,\\n end: V, // Optional: more symmetric but also more redundant.\\n seq: Vec<E>,\\n}\\n```\\n\\nNot only does the single struct store redundant (hence possibly inconsistent)\\ninformation when the sequence of edges is nonempty, one will often need to do a\\ncase analysis on the edge sequence anyway to determine whether, say,\\n[`fold`](std::iter::Iterator::fold) can be called or the result of\\n[`reduce`](std::iter::Iterator::reduce) is valid. Thus, it seems better to reify\\nthe two cases in the data structure itself.\\n\n */\nexport type Path<V, E> = { tag: \"Id\"; content: V } | { tag: \"Seq\"; content: NonEmpty<E> };"
const SERIALIZATION_CONFIG: SerializationConfig
type JsType = JsType
fn into_js(&self) -> Result<Self::JsType, Error>where
Self: Serialize,
fn from_js<T>(js: T) -> Result<Self, Error>
Source§impl<V, E> VectorFromWasmAbi for Path<V, E>where
Self: DeserializeOwned,
impl<V, E> VectorFromWasmAbi for Path<V, E>where
Self: DeserializeOwned,
type Abi = <JsType as VectorFromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[Self]>
Source§impl<V, E> VectorIntoWasmAbi for Path<V, E>
impl<V, E> VectorIntoWasmAbi for Path<V, E>
type Abi = <JsType as VectorIntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[Self]>) -> Self::Abi
impl<V: Eq, E: Eq> Eq for Path<V, E>
impl<V, E> StructuralPartialEq for Path<V, E>
Auto Trait Implementations§
impl<V, E> Freeze for Path<V, E>
impl<V, E> RefUnwindSafe for Path<V, E>where
V: RefUnwindSafe,
E: RefUnwindSafe,
impl<V, E> Send for Path<V, E>
impl<V, E> Sync for Path<V, E>
impl<V, E> Unpin for Path<V, E>
impl<V, E> UnwindSafe for Path<V, E>where
V: UnwindSafe,
E: UnwindSafe,
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 moreSource§impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
Source§type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
IntoWasmAbi::Abi
Source§fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
IntoWasmAbi::into_abi
, except that it may throw and never
return in the case of Err
.§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.