Function fmty::quote_curly_single

source ·
pub fn quote_curly_single<T>(value: T) -> Infix<T, char>
Expand description

Places a value between and .

Examples

let value = fmty::quote_curly_single("supposedly");

assert_eq!(value.to_string(), "‘supposedly’");