菜单

ABlog

Github
文章漫游 切换到深色模式 切换到浅色模式
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,
    );