s-string 1.0.0

s!() macro for quick String::from()
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#[macro_export]
macro_rules! s {
    ($x:expr) => {
        String::from($x)
    };
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test() {
        assert_eq!(String::from("foo"), s!("foo"));
    }
}