Proposing let? as a new syntax with zero‑runtime. An alternative to nested switches or Option.flatMap chains. It unwraps Ok/Some values and early‑returns on Error/None, and works seamlessly with async/await.
let? Ok(user) = await fetchUser(id)
You must log in or register to comment.


