into_sorted_unstable

Function into_sorted_unstable 

Source
pub fn into_sorted_unstable<Item, Array>(array: Array) -> Array
where Array: AsMut<[Item]>, Item: Ord,
Expand description

Sort an array by Ord and return it.

This function calls slice::sort_unstable under the hook.