@@ -1773,9 +1773,10 @@ impl<T, A: Allocator> Vec<T, A> {
1773
1773
}
1774
1774
}
1775
1775
1776
- /// Appends an element if there is sufficient spare capacity, otherwise the element is returned.
1776
+ /// Appends an element if there is sufficient spare capacity, otherwise an error is returned
1777
+ /// with the element.
1777
1778
///
1778
- /// Unlike [`push`] method will not reallocate when there's insufficient capacity.
1779
+ /// Unlike [`push`] this method will not reallocate when there's insufficient capacity.
1779
1780
/// The caller should use [`reserve`] or [`try_reserve`] to ensure that there is enough capacity.
1780
1781
///
1781
1782
/// [`push`]: Vec::push
@@ -1784,13 +1785,13 @@ impl<T, A: Allocator> Vec<T, A> {
1784
1785
///
1785
1786
/// # Examples
1786
1787
///
1787
- /// A manual, panic-free alternative to FromIterator
1788
+ /// A manual, panic-free alternative to [` FromIterator`]:
1788
1789
///
1789
1790
/// ```
1790
- /// #![feature(vec_push_within_capacity, try_reserve )]
1791
+ /// #![feature(vec_push_within_capacity)]
1791
1792
///
1792
1793
/// use std::collections::TryReserveError;
1793
- /// fn from_iter <T>(iter: impl Iterator<Item=T>) -> Result<Vec<T>, TryReserveError> {
1794
+ /// fn from_iter_fallible <T>(iter: impl Iterator<Item=T>) -> Result<Vec<T>, TryReserveError> {
1794
1795
/// let mut vec = Vec::new();
1795
1796
/// for value in iter {
1796
1797
/// if let Err(value) = vec.push_within_capacity(value) {
@@ -1801,10 +1802,10 @@ impl<T, A: Allocator> Vec<T, A> {
1801
1802
/// }
1802
1803
/// Ok(vec)
1803
1804
/// }
1804
- /// # from_iter(0..100).expect("please insert more memory" );
1805
+ /// assert_eq!(from_iter_fallible(0..100), Ok(Vec:: from_iter(0..100)) );
1805
1806
/// ```
1806
1807
#[ inline]
1807
- #[ unstable( feature = "vec_push_within_capacity" , issue = "none " ) ]
1808
+ #[ unstable( feature = "vec_push_within_capacity" , issue = "100486 " ) ]
1808
1809
pub fn push_within_capacity ( & mut self , value : T ) -> Result < ( ) , T > {
1809
1810
if self . len == self . buf . capacity ( ) {
1810
1811
return Err ( value) ;
0 commit comments