diff options
author | HampusM <hampus@hampusmat.com> | 2025-03-29 16:27:46 +0100 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2025-03-29 16:27:55 +0100 |
commit | 026a6e129ee486cd17fb17289bd3be250b7efa1c (patch) | |
tree | cb831272743b31bab9483c80156ccd6de568fa14 | |
parent | ac07eee0fe8a5c18207ef6dc4eb42cc616af6164 (diff) |
docs: remove incorrect performance note in push fn doc comment
-rw-r--r-- | src/lib.rs | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -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>, |