TILens turns technical updates into a focused daily brief: official releases,
trusted reporting, and practitioner analysis, deduplicated and organized by topic.
AI gives me an example, but unfortunately a collection growing should happen inside the iterator next(). struct GrowingIter { data: Vec<String>, index: usize, } impl Iterator for GrowingIter { type Item = String; fn…
G'day folks, Today I'm working on a dictionary stemmer. The data required for this is several megabytes, so I want to keep as few copies around as possible. There are three traits involved here: docs.rs TokenFilter in…