[−][src]Struct flag_algebra::common::AntiSym
Relation R such that R(x,y) = -R(y,x) and R(x,x) does not hold.
Trait Implementations
impl<A> FlatMatrix for AntiSym<A> where
A: Neg<Output = A> + Copy, [src]
A: Neg<Output = A> + Copy,
type Item = A
Type of the entries of the matrix.
type LineIter = Chain<Range<usize>, Range<usize>>
Iterator on one line of the matrix.
type IndexIter = Box<dyn Iterator<Item = (usize, usize, usize)>>
fn data_size(size: usize) -> usize[src]
fn flat_index(i: usize, j: usize) -> usize[src]
fn data(&self) -> &[A][src]
fn data_mut(&mut self) -> &mut Vec<A>[src]
fn from_vec(v: Vec<A>) -> Self[src]
fn index_iter(n: usize) -> Self::IndexIter[src]
fn line_iter(n: usize, v: usize) -> Self::LineIter[src]
fn get(&self, i: usize, j: usize) -> A[src]
fn set(&mut self, (i, j): (usize, usize), v: A)[src]
fn halfline_iter(v: usize) -> Range<usize>[src]
fn possible_size(&self) -> usize[src]
fn new(elem: Self::Item, n: usize) -> Self where
Self::Item: Clone, [src]
Self::Item: Clone,
fn resize(&mut self, n: usize, e: Self::Item) where
Self::Item: Clone, [src]
Self::Item: Clone,
impl<A: Clone> Clone for AntiSym<A>[src]
impl<A: Eq> Eq for AntiSym<A>[src]
impl<A: Ord> Ord for AntiSym<A>[src]
fn cmp(&self, other: &AntiSym<A>) -> Ordering[src]
fn max(self, other: Self) -> Self1.21.0[src]
fn min(self, other: Self) -> Self1.21.0[src]
fn clamp(self, min: Self, max: Self) -> Self[src]
impl<A: PartialEq> PartialEq<AntiSym<A>> for AntiSym<A>[src]
impl<A: PartialOrd> PartialOrd<AntiSym<A>> for AntiSym<A>[src]
fn partial_cmp(&self, other: &AntiSym<A>) -> Option<Ordering>[src]
fn lt(&self, other: &AntiSym<A>) -> bool[src]
fn le(&self, other: &AntiSym<A>) -> bool[src]
fn gt(&self, other: &AntiSym<A>) -> bool[src]
fn ge(&self, other: &AntiSym<A>) -> bool[src]
impl<A: Debug> Debug for AntiSym<A>[src]
impl<A> StructuralPartialEq for AntiSym<A>[src]
impl<A> StructuralEq for AntiSym<A>[src]
impl<A> Serialize for AntiSym<A> where
A: Serialize, [src]
A: Serialize,
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer, [src]
__S: Serializer,
impl<'de, A> Deserialize<'de> for AntiSym<A> where
A: Deserialize<'de>, [src]
A: Deserialize<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
Auto Trait Implementations
impl<A> Send for AntiSym<A> where
A: Send,
A: Send,
impl<A> Sync for AntiSym<A> where
A: Sync,
A: Sync,
impl<A> Unpin for AntiSym<A> where
A: Unpin,
A: Unpin,
impl<A> UnwindSafe for AntiSym<A> where
A: UnwindSafe,
A: UnwindSafe,
impl<A> RefUnwindSafe for AntiSym<A> where
A: RefUnwindSafe,
A: RefUnwindSafe,
Blanket Implementations
impl<S> BinRelation for S where
S: FlatMatrix + Debug + Clone + Ord,
<S as FlatMatrix>::Item: Enum,
<S as FlatMatrix>::Item: Ord,
<S as FlatMatrix>::Item: Clone,
<S as FlatMatrix>::Item: Copy,
<S as FlatMatrix>::Item: Debug,
<S as FlatMatrix>::Item: Default, [src]
S: FlatMatrix + Debug + Clone + Ord,
<S as FlatMatrix>::Item: Enum,
<S as FlatMatrix>::Item: Ord,
<S as FlatMatrix>::Item: Clone,
<S as FlatMatrix>::Item: Copy,
<S as FlatMatrix>::Item: Debug,
<S as FlatMatrix>::Item: Default,
fn invariant(&Self, usize) -> Vec<Vec<usize>>[src]
const INVARIANT_SIZE: usize[src]
fn extensions(&Self, usize) -> Vec<S>[src]
fn induce(&Self, &[usize]) -> S where
<S as FlatMatrix>::Item: Default,
<S as FlatMatrix>::Item: Clone, [src]
<S as FlatMatrix>::Item: Default,
<S as FlatMatrix>::Item: Clone,
fn empty() -> S[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> From<T> for T[src]
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<SS, SP> SupersetOf<SS> for SP where
SS: SubsetOf<SP>,
SS: SubsetOf<SP>,
fn to_subset(&self) -> Option<SS>
fn is_in_subset(&self) -> bool
unsafe fn to_subset_unchecked(&self) -> SS
fn from_subset(element: &SS) -> SP
impl<T> DeserializeOwned for T where
T: Deserialize<'de>, [src]
T: Deserialize<'de>,
impl<T> Same<T> for T[src]
type Output = T
Should always be Self
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,