Skip to content

CoffeJunkStudio/extend-ref

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

extend-ref

A wrapper struct that implements Extend for mutable references.

use extend_ref::ExtendRef;

fn unzip_on_refs(
    squares: &mut impl Extend<i32>,
    cubes: &mut impl Extend<i32>,
    tesseracts: &mut impl Extend<i32>
) {
    // Create an iterator of a 3-tuple
    let iter = (0i32..10).map(|i| (i * i, i.pow(3), i.pow(4)));

    // Unzip the iterator into the three referenced collections
    (ExtendRef(squares), ExtendRef(cubes), ExtendRef(tesseracts)).extend(iter);
}

License

Licensed under Apache License, Version 2.0 (LICENSE or https://www.apache.org/licenses/LICENSE-2.0).

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this project by you, as defined in the Apache-2.0 license, shall be licensed as above, without any additional terms or conditions.

About

A wrapper struct that implements `Extend` for mutable references.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages