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
use ;
/// The `brgc_gen` function generates a binary reflexed gray code sequence of length `n`.
///
/// Arguments:
///
/// * `n`: The parameter `n` represents the number of bits in the binary reflexed gray code sequence.
///
/// Returns:
///
/// The function `brgc_gen` returns a `GenBoxed<usize>`, which is a boxed generator that yields values
/// of type `usize`.
///
/// # Examples
///
/// ```
/// use ecgen::brgc_gen;
///
/// let mut lst = ["⬜"; 3];
/// println!("{}", lst.concat());
/// let mut cnt = 1;
/// for n in brgc_gen(lst.len()) {
/// lst[n] = if lst[n] == "⬜" { "⬛" } else { "⬜" };
/// println!("{}", lst.concat());
/// cnt += 1;
/// }
///
/// assert_eq!(cnt, 8);
/// ```