Macro test_data_generation::symbolize_char[][src]

macro_rules! symbolize_char {
    ( $c:ident ) => { ... };
}

This macro calculates the symbolic pattern char the represents the specified char. Returns a char.

Arguments

  • c: char - The char in the entity to convert to a symbolic pattern char.

Example

    //let symbol: char = symbolize_char!(&'A');
    //assert_eq!('V', symbol);