pub fn quote_guillemet_single<T>(value: T) -> Infix<T, char>
Expand description

Places a value between and .

Examples

let value = fmty::quote_guillemet_single("Comment ça va?");

assert_eq!(value.to_string(), "‹Comment ça va?›");