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
use crate::;
/// A type implementing [`ConcurrentCollectionMut`] is a collection owning the elements such that
///
/// * if the elements are of type `T`,
/// * then, non-consuming [`con_iter_mut`] method can be called **multiple times** to create concurrent
/// iterators; i.e., [`ConcurrentIter`], yielding references to the elements `&T`; and further,
/// * non-consuming mutable [`con_iter_mut`] method can be called to create concurrent iterators
/// yielding mutable references to elements `&mut T`.
///
/// This trait can be considered as the *concurrent counterpart* of the [`CollectionMut`] trait.
///
/// [`con_iter_mut`]: crate::ConcurrentCollectionMut::con_iter_mut
/// [`CollectionMut`]: orx_iterable::CollectionMut
/// [`ConcurrentIter`]: crate::ConcurrentIter
///
/// # Examples
///
/// ```
/// use orx_concurrent_iter::*;
///
/// let mut data = vec![1, 2];
///
/// let con_iter = data.con_iter_mut();
/// assert_eq!(con_iter.next(), Some(&mut 1));
/// assert_eq!(con_iter.next(), Some(&mut 2));
/// assert_eq!(con_iter.next(), None);
///
/// let con_iter = data.con_iter_mut();
/// while let Some(x) = con_iter.next() {
/// *x *= 100;
/// }
/// assert_eq!(data, vec![100, 200]);
/// ```