windows-collections 0.100.0

Windows collection types
Documentation

windows-collections

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}");
}