1 stable release
Uses old Rust 2015
1.0.0 | Dec 9, 2017 |
---|---|
0.1.1 |
|
0.1.0 |
|
#1437 in Rust patterns
2,488 downloads per month
Used in 18 crates
(4 directly)
3KB
Usage
Same as unzip, but for 3 items.
extern crate unzip3;
use self::unzip3::Unzip3;
fn main() {
let (a,b,c):(Vec<_>,Vec<_>,Vec<_>) = vec![(1,2,3)].iter().cloned().unzip3();
}