Closed
Description
This covers the deque_extras
blanket feature, which should probably be sharded more in the future. It covers:
truncate
resize
as_slices
as_mut_slices
swap_back_remove
swap_front_remove
Some notes:
truncate
andresize
are strange because they aren't directional (they just truncate off the back). Need work.as_slices
andas_mut_slices
seem good to go. A bit niche, but so is VecDeque. Maybe move themut
to the end. RFC'd and everything.swap_back_remove
andswap_front_remove
also seem good to go. Maybe move the directional specifier to the end. RFC'd and everything.