pub struct BitOr<T>(/* private fields */);Expand description
論理和を演算とする代数的構造
Implementations§
Trait Implementations§
Source§impl BinaryOp for BitOr<u128>
impl BinaryOp for BitOr<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 BitOr<u16>
impl BinaryOp for BitOr<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 BitOr<u32>
impl BinaryOp for BitOr<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 BitOr<u64>
impl BinaryOp for BitOr<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 BitOr<u8>
impl BinaryOp for BitOr<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 BitOr<usize>
impl BinaryOp for BitOr<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 BitOr<T>
impl<T: Ord> Ord for BitOr<T>
Source§impl<T: PartialOrd> PartialOrd for BitOr<T>
impl<T: PartialOrd> PartialOrd for BitOr<T>
impl Associative for BitOr<u128>
impl Associative for BitOr<u16>
impl Associative for BitOr<u32>
impl Associative for BitOr<u64>
impl Associative for BitOr<u8>
impl Associative for BitOr<usize>
impl Commutative for BitOr<u128>
impl Commutative for BitOr<u16>
impl Commutative for BitOr<u32>
impl Commutative for BitOr<u64>
impl Commutative for BitOr<u8>
impl Commutative for BitOr<usize>
impl<T: Copy> Copy for BitOr<T>
impl<T: Eq> Eq for BitOr<T>
impl Idempotence for BitOr<u128>
impl Idempotence for BitOr<u16>
impl Idempotence for BitOr<u32>
impl Idempotence for BitOr<u64>
impl Idempotence for BitOr<u8>
impl Idempotence for BitOr<usize>
impl<T> StructuralPartialEq for BitOr<T>
Auto Trait Implementations§
impl<T> Freeze for BitOr<T>
impl<T> RefUnwindSafe for BitOr<T>where
T: RefUnwindSafe,
impl<T> Send for BitOr<T>where
T: Send,
impl<T> Sync for BitOr<T>where
T: Sync,
impl<T> Unpin for BitOr<T>where
T: Unpin,
impl<T> UnwindSafe for BitOr<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