refactor: VecDeques PairSlices fields to private
This commit is contained in:
parent
218a96cae0
commit
f83853e342
@ -20,10 +20,10 @@
|
||||
///
|
||||
/// and the uneven remainder of either A or B is skipped.
|
||||
pub struct PairSlices<'a, 'b, T> {
|
||||
pub(crate) a0: &'a mut [T],
|
||||
pub(crate) a1: &'a mut [T],
|
||||
pub(crate) b0: &'b [T],
|
||||
pub(crate) b1: &'b [T],
|
||||
a0: &'a mut [T],
|
||||
a1: &'a mut [T],
|
||||
b0: &'b [T],
|
||||
b1: &'b [T],
|
||||
}
|
||||
|
||||
impl<'a, 'b, T> PairSlices<'a, 'b, T> {
|
||||
|
Loading…
Reference in New Issue
Block a user