pub struct BitAnd<T>(/* private fields */);Expand description
論理積を演算とする代数的構造
Implementations§
Trait Implementations§
Source§impl BinaryOp for BitAnd<u128>
impl BinaryOp for BitAnd<u128>
Source§fn op_assign_r(&self, a: &mut Self::Element, b: Self::Element)
fn op_assign_r(&self, a: &mut Self::Element, b: Self::Element)
二項演算$\circ$で(右側から)代入操作($a \leftarrow a \circ b$)をする。
Source§impl BinaryOp for BitAnd<u16>
impl BinaryOp for BitAnd<u16>
Source§fn op_assign_r(&self, a: &mut Self::Element, b: Self::Element)
fn op_assign_r(&self, a: &mut Self::Element, b: Self::Element)
二項演算$\circ$で(右側から)代入操作($a \leftarrow a \circ b$)をする。
Source§impl BinaryOp for BitAnd<u32>
impl BinaryOp for BitAnd<u32>
Source§fn op_assign_r(&self, a: &mut Self::Element, b: Self::Element)
fn op_assign_r(&self, a: &mut Self::Element, b: Self::Element)
二項演算$\circ$で(右側から)代入操作($a \leftarrow a \circ b$)をする。
Source§impl BinaryOp for BitAnd<u64>
impl BinaryOp for BitAnd<u64>
Source§fn op_assign_r(&self, a: &mut Self::Element, b: Self::Element)
fn op_assign_r(&self, a: &mut Self::Element, b: Self::Element)
二項演算$\circ$で(右側から)代入操作($a \leftarrow a \circ b$)をする。
Source§impl BinaryOp for BitAnd<u8>
impl BinaryOp for BitAnd<u8>
Source§fn op_assign_r(&self, a: &mut Self::Element, b: Self::Element)
fn op_assign_r(&self, a: &mut Self::Element, b: Self::Element)
二項演算$\circ$で(右側から)代入操作($a \leftarrow a \circ b$)をする。
Source§impl BinaryOp for BitAnd<usize>
impl BinaryOp for BitAnd<usize>
Source§fn op_assign_r(&self, a: &mut Self::Element, b: Self::Element)
fn op_assign_r(&self, a: &mut Self::Element, b: Self::Element)
二項演算$\circ$で(右側から)代入操作($a \leftarrow a \circ b$)をする。
Source§impl<T: Ord> Ord for BitAnd<T>
impl<T: Ord> Ord for BitAnd<T>
Source§impl<T: PartialOrd> PartialOrd for BitAnd<T>
impl<T: PartialOrd> PartialOrd for BitAnd<T>
impl Associative for BitAnd<u128>
impl Associative for BitAnd<u16>
impl Associative for BitAnd<u32>
impl Associative for BitAnd<u64>
impl Associative for BitAnd<u8>
impl Associative for BitAnd<usize>
impl Commutative for BitAnd<u128>
impl Commutative for BitAnd<u16>
impl Commutative for BitAnd<u32>
impl Commutative for BitAnd<u64>
impl Commutative for BitAnd<u8>
impl Commutative for BitAnd<usize>
impl<T: Copy> Copy for BitAnd<T>
impl<T: Eq> Eq for BitAnd<T>
impl Idempotence for BitAnd<u128>
impl Idempotence for BitAnd<u16>
impl Idempotence for BitAnd<u32>
impl Idempotence for BitAnd<u64>
impl Idempotence for BitAnd<u8>
impl Idempotence for BitAnd<usize>
impl<T> StructuralPartialEq for BitAnd<T>
Auto Trait Implementations§
impl<T> Freeze for BitAnd<T>
impl<T> RefUnwindSafe for BitAnd<T>where
T: RefUnwindSafe,
impl<T> Send for BitAnd<T>where
T: Send,
impl<T> Sync for BitAnd<T>where
T: Sync,
impl<T> Unpin for BitAnd<T>where
T: Unpin,
impl<T> UnwindSafe for BitAnd<T>where
T: 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
Mutably borrows from an owned value. Read more