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::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> 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  }) + "\n]"
    } 

    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  }) + "\n]"
    } 

    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  })
    } 
}