1 stable release
Uses old Rust 2015
1.0.0 | Dec 9, 2017 |
---|---|
0.1.1 |
|
0.1.0 |
|
#1846 in Rust patterns
4,469 downloads per month
Used in 17 crates
(3 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();
}