sbool isDash(char c) { ret c == '-' || c >= 0x2010 && c <= 0x2015; } sbool isDash(S s) { ret l(s) == 1 && isDash(s.charAt(0)); }