Logo

Programming-Idioms

  • Rust

Idiom #189 Filter and transform list

Produce a new list y containing the result of the function T applied to all elements e of the list x that match the predicate P.

let y = x.iter()
	.filter(P)
        .map(T)
	.collect::<Vec<_>>();
(def y 
  (eduction (filter P)
            (map T))
            x)

New implementation...