97
Returning an iterator from a method fights me over lifetimes every single time Idiomatic?
I have a struct holding a and I want a method that returns an iterator over the records matching a predicate, without collecting into a new Vec. Every attempt ends in either a lifetime error about the closure, or the…