Struct ext_sort::buffer::LimitedBuffer
source ·
[−]pub struct LimitedBuffer<T> { /* fields omitted */ }
Expand description
Buffer limited by elements count.
Implementations
Trait Implementations
Returns a plain mutable slice, which is used to implement the rest of the parallel methods. Read more
Returns a parallel iterator over mutable subslices separated by elements that match the separator. Read more
Returns a parallel iterator over at most chunk_size
elements of
self
at a time. The chunks are mutable and do not overlap. Read more
Returns a parallel iterator over chunk_size
elements of
self
at a time. The chunks are mutable and do not overlap. Read more
Sorts the slice in parallel with a comparator function. Read more
Sorts the slice in parallel with a key extraction function. Read more
Sorts the slice in parallel, but may not preserve the order of equal elements. Read more
Sorts the slice in parallel with a comparator function, but may not preserve the order of equal elements. Read more