Lines Matching defs:append
1956 /// Tries to append an element to the back of a collection.
2063 /// vec.append(&mut vec2);
2069 #[stable(feature = "append", since = "1.4.0")]
2070 pub fn append(&mut self, other: &mut Self) {
2088 /// Tries to append elements to `self` from other buffer.
2404 /// optimization purposes. If you need to append data to a `Vec`
2406 /// [`extend_from_within`], [`insert`], [`append`], [`resize`] or
2414 /// [`append`]: Vec::append
2581 /// Tries to clone and append all elements in a slice to the `Vec`.
3261 /// append the entire slice at once.