Export timsort

This commit is contained in:
Simon BD 2012-09-27 20:56:13 -05:00
parent 4f9f1c5f9a
commit f7be2d92a4

View File

@ -10,6 +10,7 @@
export merge_sort;
export quick_sort;
export quick_sort3;
export timsort;
export Sort;
type Le<T> = pure fn(v1: &T, v2: &T) -> bool;