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
use new;
use Debug;
use ;
/// N container. Stores mask atoms from the score and the length of the set used to calculate the notes frequencies.
/// To iterate through flattened mask atoms (without container atoms), use [`flat_iter`](fn@Notes::flat_iter).
/// Mask atoms are musical bricks from the score that either indicate :
/// - a sound (or silence)
/// - a command (to change parametters)
/// - a wrapper (an element applying rules on the atoms it contains)
/// To iterate through flattened mask atoms (without container atoms), use [`Notes::flat_iter(&self)`].