主题
Future<Iterable<String>> letterSplit(str) => compute( (str) => RegExp(r'\p{L}+', unicode: true) .allMatches(str) .map((e) => e[0]) .where((e) => e != null) .cast(), str, );
2c1388f
ae6764b