Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! The Modify branch of citadel handles the manipulation
//! of lists and slices, including the transformation and
//! coercions of such lists.
#[macro_use]
pub mod coerce;

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

    #[test]
    pub fn test_coerce() { 
        assert_eq!(str_to!("foo", Vec<char>), vec!['f', 'o', 'o']);
    }
}