moveiterators
Special iterators that use move semantics
Summary
| Latest Version | 0.2.1 |
|---|---|
| License | MIT |
| CI Status | Failing |
| Downloads | 0 |
| Last Indexed | 2026-07-21 05:26 |
Tags
Authors
- Hsien-yu Chu
Installation
nimble install moveiterators
choosenim install moveiterators
git clone https://github.com/sls1005/moveiterators
OS Compatibility
| Platform | Linux | macOS | Windows | FreeBSD | OpenBSD | NetBSD | Android | iOS | WASM | Embedded |
|---|---|---|---|---|---|---|---|---|---|---|
| moveiterators | ✓ | ✓ | ✓ | - | - | - | - | - | - | - |
Dependencies
| Package | Version | Optional |
|---|---|---|
| nim >= | 0.19.0 | No |
Source
| Repository | https://github.com/sls1005/moveiterators |
|---|---|
| Homepage | https://github.com/sls1005/moveiterators |
| Registry Source | nimble_official |
README
moveiterators
This package provides iterators which use move semantics. It's intended to solve the problem that the length of a sequence can change during the iterations, by limiting access to containers during the loop. The idea came from Rust.