From c6dacfcf229a84a285f1a1dbdd41938e7e0bc6cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodolphe=20Br=C3=A9ard?= Date: Wed, 30 Oct 2024 22:25:27 +0100 Subject: [PATCH] Add the missing export --- src/algorithm.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/algorithm.rs b/src/algorithm.rs index 7075acb..52541ff 100644 --- a/src/algorithm.rs +++ b/src/algorithm.rs @@ -1,5 +1,5 @@ mod rayon; mod single_thread; -pub use rayon::{rayon, rayon_sorted}; +pub use rayon::{rayon, rayon_sorted, rayon_sorted_reverse}; pub use single_thread::single_thread;