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
use core::ops::Not;
use super::ArrayMapAssign;
#[const_trait]
pub trait ArrayNotAssign<T, const N: usize>: ArrayMapAssign<T, N>
{
/// Applies the [`!`](core::ops::Not) operator on all elements, in-place.
///
/// # Examples
///
/// ```rust
/// use array__ops::ops::*;
///
/// let mut a = [true, false, true];
///
/// a.not_assign_all();
///
/// assert_eq!(a, [false, true, false]);
/// ```
fn not_assign_all(&mut self)
where
T: Not<Output = T>;
/// Asynchronously applies the [`!`](core::ops::Not) operator on all elements, in-place.
///
/// # Examples
///
/// ```rust
/// use array__ops::ops::*;
///
/// # tokio_test::block_on(async {
/// let mut a = [true, false, true];
///
/// a.not_assign_all_async().await;
///
/// assert_eq!(a, [false, true, false]);
/// # })
/// ```
async fn not_assign_all_async(&mut self)
where
T: Not<Output = T>;
}
impl<T, const N: usize> ArrayNotAssign<T, N> for [T; N]
{
fn not_assign_all(&mut self)
where
T: Not<Output = T>
{
self.map_assign(|x| !x)
}
async fn not_assign_all_async(&mut self)
where
T: Not<Output = T>
{
self.map_assign_async(async |x| !x).await
}
}