Closed bondo closed 1 year ago
Places with match v { None => Ok(None) ... }? should be replacable with a v.map(...).transpose()?. And nested options should use flatten.
match v { None => Ok(None) ... }?
v.map(...).transpose()?
flatten
Places with
match v { None => Ok(None) ... }?
should be replacable with av.map(...).transpose()?
. And nested options should useflatten
.