[][src]Trait wordfeud_solver::List

pub trait List: Debug + Default + Clone + Copy + Index<usize> + IndexMut<usize> + Index<Range<usize>> + PartialEq {
    type Item;
    pub fn len(&self) -> usize;
pub fn is_empty(&self) -> bool;
pub fn push(&mut self, item: Self::Item);
pub fn iter(&self) -> Iter<'_, Self::Item>; }

common trait for a list of Item

Associated Types

Loading content...

Required methods

pub fn len(&self) -> usize[src]

pub fn is_empty(&self) -> bool[src]

pub fn push(&mut self, item: Self::Item)[src]

pub fn iter(&self) -> Iter<'_, Self::Item>[src]

Loading content...

Implementors

impl<T: Item> List for ItemList<T>[src]

type Item = T

Loading content...