pop-os / cosmic-text

Pure Rust multi-line text handling

Home Page:https://pop-os.github.io/cosmic-text/cosmic_text/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Use a hash set instead of a Vec where applicable in shape.rs

notgull opened this issue · comments

There are a few cases where a Vec is used to keep track of a unique set of indices/scripts for future reference. It would be more efficient to use a hash set or a BTree set.