@@ -3198,9 +3198,15 @@ impl<'a, K: Ord, V, A: Allocator + Clone> CursorMutKey<'a, K, V, A> {
3198
3198
#[ unstable( feature = "btree_cursors" , issue = "107540" ) ]
3199
3199
pub fn remove_next ( & mut self ) -> Option < ( K , V ) > {
3200
3200
let current = self . current . take ( ) ?;
3201
+ if current. reborrow ( ) . next_kv ( ) . is_err ( ) {
3202
+ self . current = Some ( current) ;
3203
+ return None ;
3204
+ }
3201
3205
let mut emptied_internal_root = false ;
3202
3206
let ( kv, pos) = current
3203
3207
. next_kv ( )
3208
+ // This should be unwrap(), but that doesn't work because NodeRef
3209
+ // doesn't implement Debug. The condition is checked above.
3204
3210
. ok ( ) ?
3205
3211
. remove_kv_tracking ( || emptied_internal_root = true , self . alloc . clone ( ) ) ;
3206
3212
self . current = Some ( pos) ;
@@ -3221,9 +3227,15 @@ impl<'a, K: Ord, V, A: Allocator + Clone> CursorMutKey<'a, K, V, A> {
3221
3227
#[ unstable( feature = "btree_cursors" , issue = "107540" ) ]
3222
3228
pub fn remove_prev ( & mut self ) -> Option < ( K , V ) > {
3223
3229
let current = self . current . take ( ) ?;
3230
+ if current. reborrow ( ) . next_back_kv ( ) . is_err ( ) {
3231
+ self . current = Some ( current) ;
3232
+ return None ;
3233
+ }
3224
3234
let mut emptied_internal_root = false ;
3225
3235
let ( kv, pos) = current
3226
3236
. next_back_kv ( )
3237
+ // This should be unwrap(), but that doesn't work because NodeRef
3238
+ // doesn't implement Debug. The condition is checked above.
3227
3239
. ok ( ) ?
3228
3240
. remove_kv_tracking ( || emptied_internal_root = true , self . alloc . clone ( ) ) ;
3229
3241
self . current = Some ( pos) ;
0 commit comments