Function fmty::quote_cjk

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

Places a value between and .

Examples

let value = fmty::quote_cjk("文字");

assert_eq!(value.to_string(), "「文字」");