Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Semrush - keyword research tool

Create your online store today with Shopify

Turn ChatGPT, Claude, Gemini, And CoPilot Into Your Personal Assistant, Business Coach, Content Creator, And More

AFFILIATE MARKETING Your all-in-one performance engine Manage affiliates, creators, and customer referrals in one unified platform—turning every partnership into measurable growth

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Disclosure: My content contains affiliate links.

43,239 questions

56,142 answers

573 users

How to filter a vector in Rust

1 Answer

0 votes
fn main() {
    let numbers = vec![1, 2, 3, 4, 5, 6];

    let even_squares: Vec<i32> = numbers
        .into_iter()
        .filter_map(|x| {
            if x % 2 == 0 {
                Some(x * x) // Map even numbers to their squares
            } else {
                None // Filter out odd numbers
            }
        })
        .collect();

    println!("{:?}", even_squares); 
}


    
/*
run:

[4, 16, 36]
   
*/

 



answered Aug 7, 2025 by avibootz

Related questions

1 answer 150 views
1 answer 162 views
1 answer 152 views
2 answers 180 views
1 answer 166 views
1 answer 173 views
...