1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
use crate::{Array, ArrayWrapper};

/// Has some way to swap elements of some sort of storage.
pub trait Swap {
  /// Input type for the [`swap`](Swap::swap)` method.
  type Input;
  /// Output type for the [`swap`](Swap::swap)` method.
  type Output;

  /// Swaps two elements
  fn swap(&mut self, input: Self::Input) -> Self::Output;
}

impl<A> Swap for ArrayWrapper<A>
where
  A: Array,
{
  type Input = (usize, usize);
  type Output = ();

  fn swap(&mut self, (a, b): Self::Input) -> Self::Output {
    self.array.slice_mut().swap(a, b);
  }
}

impl<'a, T> Swap for &'a mut [T] {
  type Input = (usize, usize);
  type Output = ();

  fn swap(&mut self, (a, b): Self::Input) -> Self::Output {
    self.as_mut().swap(a, b);
  }
}

#[cfg(feature = "alloc")]
impl<T> Swap for alloc::vec::Vec<T> {
  type Input = (usize, usize);
  type Output = ();

  fn swap(&mut self, (a, b): Self::Input) -> Self::Output {
    self.as_mut_slice().swap(a, b);
  }
}

#[cfg(feature = "with_arrayvec")]
impl<A> Swap for arrayvec::ArrayVec<crate::ArrayWrapper<A>>
where
  A: Array,
{
  type Input = (usize, usize);
  type Output = ();

  fn swap(&mut self, (a, b): Self::Input) -> Self::Output {
    self.as_mut_slice().swap(a, b);
  }
}

#[cfg(feature = "with_smallvec")]
impl<A> Swap for smallvec::SmallVec<crate::ArrayWrapper<A>>
where
  A: Array,
{
  type Input = (usize, usize);
  type Output = ();

  fn swap(&mut self, (a, b): Self::Input) -> Self::Output {
    self.as_mut_slice().swap(a, b);
  }
}

#[cfg(feature = "with_staticvec")]
impl<T, const N: usize> Swap for staticvec::StaticVec<T, N> {
  type Input = (usize, usize);
  type Output = ();

  fn swap(&mut self, (a, b): Self::Input) -> Self::Output {
    self.as_mut_slice().swap(a, b);
  }
}