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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
use crate::Printing;
use std::fmt::Write;

/// When interpolated, makes following foreground rendering bold red
pub const RD: &str = "\x1B[1;31m";
/// When interpolated, makes following foreground rendering bold green    
pub const GR: &str = "\x1B[1;32m";
/// When interpolated, makes following foreground rendering bold yellow    
pub const YL: &str = "\x1B[1;33m";
/// When interpolated, makes following foreground rendering bold blue    
pub const BL: &str = "\x1B[1;34m";
/// When interpolated, makes following foreground rendering bold magenta    
pub const MG: &str = "\x1B[1;35m";
/// When interpolated, makes following foreground rendering bold cyan    
pub const CY: &str = "\x1B[1;36m";
/// Returns the terminal rendering to default
pub const UN: &str = "\x1B[0m";

impl<T> Printing<T> for T
where
    T: std::fmt::Display,
{
    fn to_str(self) -> String {
        self.to_string()
    }
    fn to_plainstr(self) -> String {
        self.to_string()
    }
}

impl<T> Printing<T> for &[T]
where
    T: std::fmt::Display,
{
    fn to_str(self) -> String {
        match self.len() {
            0 => "[]".to_string(),
            1 => format!("[{}]", self[0]),
            _ => {
                self.iter()
                    .skip(1)
                    .fold(format!("[{}", self[0]), |mut s, item| {
                        write!(s, " {}", item).ok();
                        s
                    })
                    + "]"
            }
        }
    }

    fn to_plainstr(self) -> String {
        match self.len() {
            0 => "".to_string(),
            1 => format!("{}", self[0]),
            _ => self
                .iter()
                .skip(1)
                .fold(format!("{}", self[0]), |mut s, item| {
                    write!(s, " {}", item).ok();
                    s
                }),
        }
    }
}

impl<T,U> Printing<T> for &(T,U)
where
    T: std::fmt::Display,
    U: std::fmt::Display
{
    fn to_str(self) -> String {
        format!("({},{})", self.0, self.1)   
    }

    fn to_plainstr(self) -> String {
        format!("{} {}", self.0, self.1)   
    }
}

impl<T,U,V> Printing<T> for &(T,U,V)
where
    T: std::fmt::Display,
    U: std::fmt::Display,
    V: std::fmt::Display
{
    fn to_str(self) -> String {
        format!("({},{},{})", self.0, self.1, self.2)   
    }

    fn to_plainstr(self) -> String {
        format!("{} {} {}", self.0, self.1, self.2)   
    }
}

impl<T,U,V,W> Printing<T> for &(T,U,V,W)
where
    T: std::fmt::Display,
    U: std::fmt::Display,
    V: std::fmt::Display,
    W: std::fmt::Display
{
    fn to_str(self) -> String {
        format!("({},{},{},{})", self.0, self.1, self.2, self.3)   
    }

    fn to_plainstr(self) -> String {
        format!("{} {} {} {}", self.0, self.1, self.2, self.3)   
    }
}

impl<T> Printing<T> for &[&[T]]
where
    T: std::fmt::Display,
{
    fn to_str(self) -> String {
        if self.is_empty() {
            return "[]".to_string();
        };
        self.iter().fold("[\n".to_string(), |mut s, &item| {
            writeln!(s, " {}", item.to_str()).ok();
            s
        }) + "]"
    }

    /// Without the enclosing square brackets
    fn to_plainstr(self) -> String {
        if self.is_empty() {
            return "".to_string();
        };
        self.iter().fold("\n".to_string(), |mut s, &item| {
            writeln!(s, " {}", item.to_str()).ok();
            s
        })
    }
}

impl<T> Printing<T> for &[Vec<T>]
where
    T: std::fmt::Display,
{
    fn to_str(self) -> String {
        if self.is_empty() {
            return "[]".to_string();
        };
        self.iter().fold("[\n".to_string(), |mut s, item| {
            writeln!(s, " {}", item.to_str()).ok();
            s
        }) + "]"
    }

    fn to_plainstr(self) -> String {
        if self.is_empty() {
            return "".to_string();
        };
        self.iter().fold("\n".to_string(), |mut s, item| {
            writeln!(s, " {}", item.to_str()).ok();
            s
        })
    }
}