@@ -1507,6 +1507,8 @@ impl<T> VecDeque<T> {
1507
1507
1508
1508
#[ inline]
1509
1509
fn is_contiguous ( & self ) -> bool {
1510
+ // FIXME: Should we consider `head == 0` to mean
1511
+ // that `self` is contiguous?
1510
1512
self . tail <= self . head
1511
1513
}
1512
1514
@@ -2236,7 +2238,7 @@ impl<T> VecDeque<T> {
2236
2238
if self . is_contiguous ( ) {
2237
2239
let tail = self . tail ;
2238
2240
let head = self . head ;
2239
- return unsafe { & mut self . buffer_as_mut_slice ( ) [ tail..head ] } ;
2241
+ return unsafe { RingSlices :: ring_slices ( self . buffer_as_mut_slice ( ) , head , tail) . 0 } ;
2240
2242
}
2241
2243
2242
2244
let buf = self . buf . ptr ( ) ;
@@ -2262,7 +2264,13 @@ impl<T> VecDeque<T> {
2262
2264
self . tail = 0 ;
2263
2265
self . head = len;
2264
2266
}
2265
- } else if free >= self . head {
2267
+ } else if free > self . head {
2268
+ // FIXME: We currently do not consider ....ABCDEFGH
2269
+ // to be contiguous because `head` would be `0` in this
2270
+ // case. While we probably want to change this it
2271
+ // isn't trivial as a few places expect `is_contiguous`
2272
+ // to mean that we can just slice using `buf[tail..head]`.
2273
+
2266
2274
// there is enough free space to copy the head in one go,
2267
2275
// this means that we first shift the tail forwards, and then
2268
2276
// copy the head to the correct position.
@@ -2276,7 +2284,7 @@ impl<T> VecDeque<T> {
2276
2284
// ...ABCDEFGH.
2277
2285
2278
2286
self . tail = self . head ;
2279
- self . head = self . tail + len;
2287
+ self . head = self . wrap_add ( self . tail , len) ;
2280
2288
}
2281
2289
} else {
2282
2290
// free is smaller than both head and tail,
@@ -2316,7 +2324,7 @@ impl<T> VecDeque<T> {
2316
2324
2317
2325
let tail = self . tail ;
2318
2326
let head = self . head ;
2319
- unsafe { & mut self . buffer_as_mut_slice ( ) [ tail..head ] }
2327
+ unsafe { RingSlices :: ring_slices ( self . buffer_as_mut_slice ( ) , head , tail) . 0 }
2320
2328
}
2321
2329
2322
2330
/// Rotates the double-ended queue `mid` places to the left.
@@ -3282,7 +3290,7 @@ impl<T> From<VecDeque<T>> for Vec<T> {
3282
3290
let len = other. len ( ) ;
3283
3291
let cap = other. cap ( ) ;
3284
3292
3285
- if other. head != 0 {
3293
+ if other. tail != 0 {
3286
3294
ptr:: copy ( buf. add ( other. tail ) , buf, len) ;
3287
3295
}
3288
3296
Vec :: from_raw_parts ( buf, len, cap)
0 commit comments