Rename MapInPlace as FlatMapInPlace.

After removing the `map_in_place` method, which isn't much use because
modifying every element in a collection such as a `Vec` can be done
trivially with iteration.
This commit is contained in:
Nicholas Nethercote
2023-03-08 15:53:56 +11:00
parent f63ccaf25f
commit be60bcb28a
5 changed files with 8 additions and 15 deletions

View File

@@ -50,6 +50,7 @@ pub fn cold_path<F: FnOnce() -> R, R>(f: F) -> R {
pub mod base_n;
pub mod binary_search_util;
pub mod captures;
pub mod flat_map_in_place;
pub mod flock;
pub mod functor;
pub mod fx;
@@ -57,7 +58,6 @@ pub mod graph;
pub mod intern;
pub mod jobserver;
pub mod macros;
pub mod map_in_place;
pub mod obligation_forest;
pub mod owning_ref;
pub mod sip128;