pub trait SwapChunks {
// Required method
fn swap_chunks(&mut self, begin_a: usize, begin_b: usize, chunk_size: usize);
}Required Methods§
Sourcefn swap_chunks(&mut self, begin_a: usize, begin_b: usize, chunk_size: usize)
fn swap_chunks(&mut self, begin_a: usize, begin_b: usize, chunk_size: usize)
Swap equal sized contiguous chunks in this collection.