Appends a slice of copyable elements to the vector.
impl<T, H> Vec<T, H>
where H: Allocator,
{
fn push_all(&mut self, vals: &[T]) -> Result<(), Errno>
where T: Copy,
}| Name | Description |
|---|---|
| vals | The elements to append. |
If this operation fails, no elements have been appended.