Trait sorting::Panicsort [] [src]

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

This trait provides the panicsort functionality.

Required Methods

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

Implementations on Foreign Types

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

A default implementatino for Vec<T>

[src]

Implementors