pub struct ConcatList<T>(/* private fields */);Expand description
Vecの結合演算のモノイド
Implementations§
Source§impl<T> ConcatList<T>
impl<T> ConcatList<T>
Trait Implementations§
Source§impl<T> BinaryOp for ConcatList<T>
impl<T> BinaryOp for ConcatList<T>
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: Clone> Clone for ConcatList<T>
impl<T: Clone> Clone for ConcatList<T>
Source§fn clone(&self) -> ConcatList<T>
fn clone(&self) -> ConcatList<T>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<T: Debug> Debug for ConcatList<T>
impl<T: Debug> Debug for ConcatList<T>
Source§impl<T: Default> Default for ConcatList<T>
impl<T: Default> Default for ConcatList<T>
Source§fn default() -> ConcatList<T>
fn default() -> ConcatList<T>
Returns the “default value” for a type. Read more
Source§impl<T: Hash> Hash for ConcatList<T>
impl<T: Hash> Hash for ConcatList<T>
Source§impl<T> Identity for ConcatList<T>
impl<T> Identity for ConcatList<T>
Source§impl<T: PartialEq> PartialEq for ConcatList<T>
impl<T: PartialEq> PartialEq for ConcatList<T>
impl<T> Associative for ConcatList<T>
impl<T: Copy> Copy for ConcatList<T>
impl<T: Eq> Eq for ConcatList<T>
impl<T> StructuralPartialEq for ConcatList<T>
Auto Trait Implementations§
impl<T> Freeze for ConcatList<T>
impl<T> RefUnwindSafe for ConcatList<T>where
T: RefUnwindSafe,
impl<T> Send for ConcatList<T>where
T: Send,
impl<T> Sync for ConcatList<T>where
T: Sync,
impl<T> Unpin for ConcatList<T>where
T: Unpin,
impl<T> UnwindSafe for ConcatList<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