windows-collections
The windows-collections crate implements Windows collection interfaces for Rust collections.
Start by adding the following to your Cargo.toml file:
[]
= "0.100"
use *;
let numbers = from;
for value in numbers
The windows-collections crate implements Windows collection interfaces for Rust collections.
Start by adding the following to your Cargo.toml file:
[dependencies.windows-collections]
version = "0.100"
use windows_collections::*;
let numbers = IIterable::<i32>::from(vec![1, 2, 3]);
for value in numbers {
println!("{value}");
}