Skip to content

Commit

Permalink
Make a cosmetic adjustment
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanUkhov committed Dec 26, 2024
1 parent b2e7bee commit 34fa1cf
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/asynchronous.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ use std::sync::Arc;
use tokio::sync::{mpsc, Mutex};
use tokio_stream::wrappers::ReceiverStream;

/// Process an iterator in parallel.
pub fn parallelize<Items, Item, Map, Future, Output>(
items: Items,
mut map: Map,
Expand Down
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,5 @@ mod implementation;

mod support;

/// Process an iterator in parallel.
pub use implementation::parallelize;
1 change: 0 additions & 1 deletion src/synchronous.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
use std::sync::{mpsc, Arc, Mutex};

/// Process an iterator in parallel.
pub fn parallelize<Items, Item, Map, Output>(
items: Items,
mut map: Map,
Expand Down

0 comments on commit 34fa1cf

Please sign in to comment.