[][src]Trait sorting::Miraclesort

pub trait Miraclesort {
    fn miraclesort(&self);
}

This trait provides the miraclesort functionality.

Required methods

fn miraclesort(&self)

Miracle sort is a sort that truly requires a miracle. We keep checking the array until it is sorted. It requires that some external force (a miracle?) changes some bits in the computer in a way that it becomes sorted.

Loading content...

Implementations on Foreign Types

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

A default implementatino for Vec<T>

Loading content...

Implementors

Loading content...