Sign in
rust
/
rust
/
refs/heads/perf-tmp
/
.
/
library
/
alloctests
/
tests
/
sort
/
mod.rs
blob: 0e2494ca9d34eee91c5531ce25727f7095985bf3 [
file
] [
log
] [
blame
]
pub
trait
Sort
{
fn
name
()
->
String
;
fn
sort
<
T
>(
v
:
&
mut
[
T
])
where
T
:
Ord
;
fn
sort_by
<
T
,
F
>(
v
:
&
mut
[
T
],
compare
:
F
)
where
F
:
FnMut
(&
T
,
&
T
)
->
std
::
cmp
::
Ordering
;
}
mod
ffi_types
;
mod
known_good_stable_sort
;
mod
patterns
;
mod
tests
;
mod
zipf
;