find_first

Macro find_first 

Source
macro_rules! find_first {
    ($data:expr, $field:expr, $pred:expr) => { ... };
}
Expand description

Find first matching item.

§Example

let found = find_first!(products, Product::id_r(), |&id| id == 42);