@@ -1240,7 +1240,8 @@ impl<T, A: Allocator> Vec<T, A> {
1240
1240
/// ```
1241
1241
#[ inline]
1242
1242
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1243
- pub fn capacity ( & self ) -> usize {
1243
+ #[ rustc_const_unstable( feature = "const_vec_string_slice" , issue = "129041" ) ]
1244
+ pub const fn capacity ( & self ) -> usize {
1244
1245
self . buf . capacity ( )
1245
1246
}
1246
1247
@@ -1548,8 +1549,9 @@ impl<T, A: Allocator> Vec<T, A> {
1548
1549
#[ inline]
1549
1550
#[ stable( feature = "vec_as_slice" , since = "1.7.0" ) ]
1550
1551
#[ cfg_attr( not( test) , rustc_diagnostic_item = "vec_as_slice" ) ]
1551
- pub fn as_slice ( & self ) -> & [ T ] {
1552
- self
1552
+ #[ rustc_const_unstable( feature = "const_vec_string_slice" , issue = "129041" ) ]
1553
+ pub const fn as_slice ( & self ) -> & [ T ] {
1554
+ unsafe { slice:: from_raw_parts ( self . as_ptr ( ) , self . len ) }
1553
1555
}
1554
1556
1555
1557
/// Extracts a mutable slice of the entire vector.
@@ -1566,8 +1568,9 @@ impl<T, A: Allocator> Vec<T, A> {
1566
1568
#[ inline]
1567
1569
#[ stable( feature = "vec_as_slice" , since = "1.7.0" ) ]
1568
1570
#[ cfg_attr( not( test) , rustc_diagnostic_item = "vec_as_mut_slice" ) ]
1569
- pub fn as_mut_slice ( & mut self ) -> & mut [ T ] {
1570
- self
1571
+ #[ rustc_const_unstable( feature = "const_vec_string_slice" , issue = "129041" ) ]
1572
+ pub const fn as_mut_slice ( & mut self ) -> & mut [ T ] {
1573
+ unsafe { slice:: from_raw_parts_mut ( self . as_mut_ptr ( ) , self . len ) }
1571
1574
}
1572
1575
1573
1576
/// Returns a raw pointer to the vector's buffer, or a dangling raw pointer
@@ -1622,9 +1625,10 @@ impl<T, A: Allocator> Vec<T, A> {
1622
1625
/// [`as_mut_ptr`]: Vec::as_mut_ptr
1623
1626
/// [`as_ptr`]: Vec::as_ptr
1624
1627
#[ stable( feature = "vec_as_ptr" , since = "1.37.0" ) ]
1628
+ #[ rustc_const_unstable( feature = "const_vec_string_slice" , issue = "129041" ) ]
1625
1629
#[ rustc_never_returns_null_ptr]
1626
1630
#[ inline]
1627
- pub fn as_ptr ( & self ) -> * const T {
1631
+ pub const fn as_ptr ( & self ) -> * const T {
1628
1632
// We shadow the slice method of the same name to avoid going through
1629
1633
// `deref`, which creates an intermediate reference.
1630
1634
self . buf . ptr ( )
@@ -1681,9 +1685,10 @@ impl<T, A: Allocator> Vec<T, A> {
1681
1685
/// [`as_mut_ptr`]: Vec::as_mut_ptr
1682
1686
/// [`as_ptr`]: Vec::as_ptr
1683
1687
#[ stable( feature = "vec_as_ptr" , since = "1.37.0" ) ]
1688
+ #[ rustc_const_unstable( feature = "const_vec_string_slice" , issue = "129041" ) ]
1684
1689
#[ rustc_never_returns_null_ptr]
1685
1690
#[ inline]
1686
- pub fn as_mut_ptr ( & mut self ) -> * mut T {
1691
+ pub const fn as_mut_ptr ( & mut self ) -> * mut T {
1687
1692
// We shadow the slice method of the same name to avoid going through
1688
1693
// `deref_mut`, which creates an intermediate reference.
1689
1694
self . buf . ptr ( )
@@ -2561,8 +2566,9 @@ impl<T, A: Allocator> Vec<T, A> {
2561
2566
/// ```
2562
2567
#[ inline]
2563
2568
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
2569
+ #[ rustc_const_unstable( feature = "const_vec_string_slice" , issue = "129041" ) ]
2564
2570
#[ rustc_confusables( "length" , "size" ) ]
2565
- pub fn len ( & self ) -> usize {
2571
+ pub const fn len ( & self ) -> usize {
2566
2572
self . len
2567
2573
}
2568
2574
@@ -2579,7 +2585,8 @@ impl<T, A: Allocator> Vec<T, A> {
2579
2585
/// ```
2580
2586
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
2581
2587
#[ cfg_attr( not( test) , rustc_diagnostic_item = "vec_is_empty" ) ]
2582
- pub fn is_empty ( & self ) -> bool {
2588
+ #[ rustc_const_unstable( feature = "const_vec_string_slice" , issue = "129041" ) ]
2589
+ pub const fn is_empty ( & self ) -> bool {
2583
2590
self . len ( ) == 0
2584
2591
}
2585
2592
@@ -3130,15 +3137,15 @@ impl<T, A: Allocator> ops::Deref for Vec<T, A> {
3130
3137
3131
3138
#[ inline]
3132
3139
fn deref ( & self ) -> & [ T ] {
3133
- unsafe { slice :: from_raw_parts ( self . as_ptr ( ) , self . len ) }
3140
+ self . as_slice ( )
3134
3141
}
3135
3142
}
3136
3143
3137
3144
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
3138
3145
impl < T , A : Allocator > ops:: DerefMut for Vec < T , A > {
3139
3146
#[ inline]
3140
3147
fn deref_mut ( & mut self ) -> & mut [ T ] {
3141
- unsafe { slice :: from_raw_parts_mut ( self . as_mut_ptr ( ) , self . len ) }
3148
+ self . as_mut_slice ( )
3142
3149
}
3143
3150
}
3144
3151
0 commit comments