Skip to content

Commit 3068b23

Browse files
committed
Canonicalize special cases of map (5.2) move to own module (2) only import used items
1 parent 9346100 commit 3068b23

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/adaptors/mod.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ mod coalesce;
88
mod map;
99
mod multi_product;
1010
pub use self::coalesce::*;
11-
pub use self::map::*;
11+
pub use self::map::{map_into, map_ok, MapInto, MapOk};
12+
#[allow(deprecated)]
13+
pub use self::map::MapResults;
1214
#[cfg(feature = "use_std")]
1315
pub use self::multi_product::*;
1416

0 commit comments

Comments
 (0)