[][src]Trait sorting::Panicsort

pub trait Panicsort {
    fn panicsort(&self);
}

This trait provides the panicsort functionality.

Required methods

fn panicsort(&self)

Panicsort is a sorting algorithm that panics when its input array is not sorted and returns otherwise.

Loading content...

Implementations on Foreign Types

impl<T: PartialOrd> Panicsort for Vec<T>[src]

A default implementatino for Vec<T>

Loading content...

Implementors

Loading content...