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
use std::fmt;
use std::fmt::{Debug, Display, Formatter};
use std::ops::Add;

/// Structure created by lazy_cat! macro.
///
/// Implements Display and ToString.  The generic arguments A and B are typically recursive, so I
/// advise you to not statically define them.  Use generics for them.
/// This structure will consume everything given to the lazy_cat! macro
/// then when a string version of this is requested it will be built on the fly by using the
/// Display implementations of everything it has consumed.
pub struct LazyStr<A: Display + Sized, B: Display + Sized> {
    a: A,
    b: B,
}

impl<A: Display + Sized, B: Display + Sized, C: Display + Sized> Add<C> for LazyStr<A, B> {
    type Output = LazyStr<LazyStr<A, B>, C>;

    fn add(self, other: C) -> LazyStr<LazyStr<A, B>, C> {
        LazyStr::new(self, other)
    }
}

impl<A: Display + Sized, B: Display + Sized> Debug for LazyStr<A, B> {
    fn fmt(&self, f: &mut Formatter) -> fmt::Result {
        self.a.fmt(f)?;
        self.b.fmt(f)?;
        Ok(())
    }
}

impl<A: Display + Sized, B: Display + Sized> Display for LazyStr<A, B> {
    fn fmt(&self, f: &mut Formatter) -> fmt::Result {
        self.a.fmt(f)?;
        self.b.fmt(f)?;
        Ok(())
    }
}

impl<A: Display + Sized, B: Display + Sized> LazyStr<A, B> {
    pub fn new(a: A, b: B) -> LazyStr<A, B> {
        LazyStr {
            a,
            b,
        }
    }
}

/// Creates a LazyStr from several things that are Display + Sized, consuming them in the process.
/// (Use references or Copy types)
///
/// # Examples
///
/// ```
/// # #[macro_use]
/// # extern crate lazy_cat;
/// # fn main() {
/// assert_eq!("Hello world!", lazy_cat!("Hello", " world!").to_string());
/// assert_eq!("Hello John Doe!", lazy_cat!("Hello ", "John ", "Doe!").to_string());
/// assert_eq!("123Hello", lazy_cat!(1, 2, 3, "Hello").to_string());
/// # }
/// ```
#[macro_export]
macro_rules! lazy_cat {
    ($x:expr) => ($x);
    // `$x` followed by at least one `$y,`
    ($x:expr, $($y:expr),+) => (
        $crate::LazyStr::new($x, lazy_cat!($($y),+))
    )
}