When an expression has a type of Option<_> or Result<_> it would be useful to have a quick way to turn that into an
if let Some($1) = expr {
$2
}$3
or if let Ok respectively.
Yup, I think we should add ifl postfix completion. At the moment, one can do this:

Will try to resolve it this week
Example:

Most helpful comment
Example: