pub fn is_double_width(c: char) -> bool
Check if the char c has double width.
c
use unicode_display_width::is_double_width; // assert_eq!(is_double_width('🛡'), false); assert_eq!(is_double_width('✅'), true);