summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2025-03-29 16:27:46 +0100
committerHampusM <hampus@hampusmat.com>2025-03-29 16:27:55 +0100
commit026a6e129ee486cd17fb17289bd3be250b7efa1c (patch)
treecb831272743b31bab9483c80156ccd6de568fa14
parentac07eee0fe8a5c18207ef6dc4eb42cc616af6164 (diff)
docs: remove incorrect performance note in push fn doc comment
-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>,