summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/lib.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/lib.rs b/src/lib.rs
index a7492fb..25f9ab5 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -162,11 +162,6 @@ impl MultiVec
//}
/// Pushes a item to the `MultiVec`.
- ///
- /// ## Note on performance
- /// Pushing can be pretty slow. Since all of the field lists are stored in the same
- /// allocation, when pushing and the `MultiVec` needs to grow, all lists except the
- /// first has to be moved to new locations for them to not overlap.
pub fn push(
&mut self,
fields: impl AsRef<[OwnedAnyPtr]> + IntoIterator<Item = OwnedAnyPtr>,