document panic behavior of Vec::resize and Vec::resize_with

This commit is contained in:
Jonathan Gruner 2025-04-08 00:00:38 +02:00
parent e643f59f6d
commit 4aab8e88e4

View file

@ -2803,6 +2803,10 @@ impl<T, A: Allocator> Vec<T, A> {
/// want to use the [`Default`] trait to generate values, you can
/// pass [`Default::default`] as the second argument.
///
/// # Panics
///
/// Panics if the new capacity exceeds `isize::MAX` _bytes_.
///
/// # Examples
///
/// ```
@ -3010,6 +3014,10 @@ impl<T: Clone, A: Allocator> Vec<T, A> {
/// [`Clone`]), use [`Vec::resize_with`].
/// If you only need to resize to a smaller size, use [`Vec::truncate`].
///
/// # Panics
///
/// Panics if the new capacity exceeds `isize::MAX` _bytes_.
///
/// # Examples
///
/// ```