messense / jieba-rs

The Jieba Chinese Word Segmentation Implemented in Rust

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

能否增加返回Iterator接口?

wyhhh opened this issue · comments

commented

像常用的cut_xx接口,都是返回的Vec,但实际上是不必要alloc的。所以我建议增加或改动返回Iterator,减少alloc,提高性能

当然可以,不过 stable Rust 还没有能用的类似 Python iterator 的 yield 的机制,改成 Iterator 会比较复杂。

commented

没事,我先魔改下cut