[−][src]Struct nonempty::NonEmpty
Methods
impl<T> NonEmpty<T>[src]
pub const fn new(e: T) -> Self[src]
Alias for NonEmpty::singleton.
pub const fn singleton(e: T) -> Self[src]
Create a new non-empty list with an initial element.
pub const fn is_empty(&self) -> bool[src]
Always returns false.
pub const fn first(&self) -> &T[src]
Get the first element. Never fails.
pub fn push(&mut self, e: T)[src]
Push an element to the end of the list.
pub fn pop(&mut self) -> Option<T>[src]
Pop an element from the end of the list.
pub fn len(&self) -> usize[src]
Get the length of the list.
pub fn last(&self) -> &T[src]
Get the last element. Never fails.
pub fn last_mut(&mut self) -> &mut T[src]
Get the last element mutably.
pub fn get(&self, index: usize) -> Option<&T>[src]
Get an element by index.
pub fn get_mut(&mut self, index: usize) -> Option<&mut T>[src]
Get an element by index, mutably.
pub fn truncate(&mut self, len: usize)[src]
Truncate the list to a certain size. Must be greater than 0.
pub fn iter<'a>(&'a self) -> impl Iterator<Item = &T> + 'a[src]
use nonempty::NonEmpty; let mut l = NonEmpty::from((42, vec![36, 58])); let mut l_iter = l.iter(); assert_eq!(l_iter.next(), Some(&42)); assert_eq!(l_iter.next(), Some(&36)); assert_eq!(l_iter.next(), Some(&58)); assert_eq!(l_iter.next(), None);
pub fn iter_mut<'a>(&'a mut self) -> impl Iterator<Item = &mut T> + 'a[src]
use nonempty::NonEmpty; let mut l = NonEmpty::new(42); l.push(36); l.push(58); for i in l.iter_mut() { *i *= 10; } let mut l_iter = l.iter(); assert_eq!(l_iter.next(), Some(&420)); assert_eq!(l_iter.next(), Some(&360)); assert_eq!(l_iter.next(), Some(&580)); assert_eq!(l_iter.next(), None);
pub fn from_slice(slice: &[T]) -> Option<NonEmpty<T>> where
T: Clone, [src]
T: Clone,
Often we have a Vec (or slice &[T]) but want to ensure that it is NonEmpty before
proceeding with a computation. Using from_slice will give us a proof
that we have a NonEmpty in the Some branch, otherwise it allows
the caller to handle the None case.
Example Use
use nonempty::NonEmpty; let non_empty_vec = NonEmpty::from_slice(&[1, 2, 3, 4, 5]); assert_eq!(non_empty_vec, Some(NonEmpty::from((1, vec![2, 3, 4, 5])))); let empty_vec: Option<NonEmpty<&u32>> = NonEmpty::from_slice(&[]); assert!(empty_vec.is_none());
pub fn split_first(&self) -> (&T, &[T])[src]
Deconstruct a NonEmpty into its head and tail.
This operation never fails since we are guranteed
to have a head element.
Example Use
use nonempty::NonEmpty; let mut non_empty = NonEmpty::from((1, vec![2, 3, 4, 5])); // Guaranteed to have the head and we also get the tail. assert_eq!(non_empty.split_first(), (&1, &[2, 3, 4, 5][..])); let non_empty = NonEmpty::new(1); // Guaranteed to have the head element. assert_eq!(non_empty.split_first(), (&1, &[][..]));
pub fn split(&self) -> (&T, &[T], &T)[src]
Deconstruct a NonEmpty into its first, last, and
middle elements, in that order.
If there is only one element then first == last.
Example Use
use nonempty::NonEmpty; let mut non_empty = NonEmpty::from((1, vec![2, 3, 4, 5])); // Guaranteed to have the last element and the elements // preceding it. assert_eq!(non_empty.split(), (&1, &[2, 3, 4][..], &5)); let non_empty = NonEmpty::new(1); // Guaranteed to have the last element. assert_eq!(non_empty.split(), (&1, &[][..], &1));
pub fn append(&mut self, other: &mut Vec<T>)[src]
Append a Vec to the tail of the NonEmpty.
Example Use
use nonempty::NonEmpty; let mut non_empty = NonEmpty::new(1); let mut vec = vec![2, 3, 4, 5]; non_empty.append(&mut vec); let mut expected = NonEmpty::from((1, vec![2, 3, 4, 5])); assert_eq!(non_empty, expected);
pub fn map<U, F>(&self, f: F) -> NonEmpty<U> where
F: Fn(&T) -> U, [src]
F: Fn(&T) -> U,
A structure preserving map. This is useful for when
we wish to keep the NonEmpty structure guaranteeing
that there is at least one element. Otherwise, we can
use nonempty.iter().map(f).
Example Use
use nonempty::NonEmpty; let non_empty = NonEmpty::from((1, vec![2, 3, 4, 5])); let squares = non_empty.map(|i| i * i); let expected = NonEmpty::from((1, vec![4, 9, 16, 25])); assert_eq!(squares, expected);
Trait Implementations
impl<T> Into<Vec<T>> for NonEmpty<T>[src]
impl<T> From<(T, Vec<T>)> for NonEmpty<T>[src]
fn from((head, tail): (T, Vec<T>)) -> Self[src]
Turns a pair of an element and a Vec into a NonEmpty.
impl<T: Clone> Clone for NonEmpty<T>[src]
impl<T: Eq> Eq for NonEmpty<T>[src]
impl<T: Ord> Ord for NonEmpty<T>[src]
fn cmp(&self, other: &NonEmpty<T>) -> 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<T: PartialEq> PartialEq<NonEmpty<T>> for NonEmpty<T>[src]
impl<T: PartialOrd> PartialOrd<NonEmpty<T>> for NonEmpty<T>[src]
fn partial_cmp(&self, other: &NonEmpty<T>) -> Option<Ordering>[src]
fn lt(&self, other: &NonEmpty<T>) -> bool[src]
fn le(&self, other: &NonEmpty<T>) -> bool[src]
fn gt(&self, other: &NonEmpty<T>) -> bool[src]
fn ge(&self, other: &NonEmpty<T>) -> bool[src]
impl<T: Debug> Debug for NonEmpty<T>[src]
impl<T: Hash> Hash for NonEmpty<T>[src]
fn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl<T> StructuralPartialEq for NonEmpty<T>[src]
impl<T> StructuralEq for NonEmpty<T>[src]
Auto Trait Implementations
impl<T> Send for NonEmpty<T> where
T: Send,
T: Send,
impl<T> Sync for NonEmpty<T> where
T: Sync,
T: Sync,
impl<T> Unpin for NonEmpty<T> where
T: Unpin,
T: Unpin,
impl<T> UnwindSafe for NonEmpty<T> where
T: UnwindSafe,
T: UnwindSafe,
impl<T> RefUnwindSafe for NonEmpty<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
Blanket Implementations
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,