rust-iterator-collections
Design and review Rust iterator pipelines and collection code for clear ownership, allocation, ordering, and error behavior. Use when writing, refac…
它会碰到什么
这一栏是扫描器报的事实,不是结论。命中多不等于有毒(安全工具、规则库、示例脚本本来就会包含危险写法),命中少也不等于干净。它和你手上的凭据、文件、网络有什么关系,需要你自己看。
技能内容
Rust Iterator Collections
Use this skill to turn collection code into clear, idiomatic Rust. Prefer
iterator and collection APIs that express the operation directly while keeping
ownership, allocation, and error behavior visible.
Core Workflow
- Identify the input ownership mode: borrowed iteration, mutable iteration, or
consuming iteration.
- Pick the simplest iterator shape:
iter,iter_mut,into_iter, ranges,
drain, or a collection-specific method.
- Replace manual loops with adapters only when the resulting code is clearer.
Keep explicit loops for complex branching, early mutation, or debugging.
- Use fallible iterator consumers such as
collect::<Result<Vec<_>, _>>(),
try_fold, and try_for_each when errors should short-circuit.
- Use
HashMap::entryorBTreeMap::entryfor insert-or-update logic. - Avoid unnecessary intermediate
Vecs. Chain iterators or extend an existing
collection when possible.
- Test empty input, single item input, duplicate keys, ordering expectations,
and error short-circuiting.
Iterator Rules
- Accept
impl IntoIterator<Item = T>when the function only needs iteration. - Use
&[T]when slice semantics are enough; avoid&Vec<T>. - Use
filter_mapfor map-then-discard-None; useflat_mapwhen each item
expands to zero or more items.
- Use
map_whileorscanfor stateful transformations when they make stopping
behavior explicit.
- Add type annotations at
collectboundaries, not throughout the pipeline. - Prefer
clonedorcopiedovermap(|x| x.clone())when cloning iterator
items is intentional.
Collection Rules
Read references/iterator-collection-patterns.md when refactoring a loop or
reviewing collection mutation.
- Use
Vecfor contiguous ordered data,VecDequefor queue-like push/pop at
both ends, BinaryHeap for priority queues, HashMap for unordered lookup,
and BTreeMap for sorted lookup or range queries.
- Use
retain,drain,splice, andsplit_offinstead of mutating a
collection while separately iterating over borrowed elements.
- Use
Entry::or_insert_withwhen default construction is expensive. - Preserve ordering deliberately. Do not swap
BTreeMapforHashMapwhen
iteration order is part of behavior.
- Reserve capacity only when size is known or profiling shows reallocation
matters.
Review Checklist
- The pipeline communicates ownership and error behavior clearly.
- No
contains_keyfollowed byinsertwhereentrywould be simpler. - No avoidable
collect::<Vec<_>>()just to iterate again. - Indexing is used only when indices are the domain concept.
- Tests cover duplicates, empty input, and deterministic ordering where needed.
想直接用这个技能?
本站把开放许可(MIT / Apache 等)的技能按仓库打包整理到网盘,点一下转存到你自己的网盘,不用一个个从 GitHub 拉。许可未声明的技能只给原始仓库链接,不打包。
它属于哪个仓库
plugins/LVTD-LLC/skills/skills/rust-iterator-collections/SKILL.md