From 93220029bf94e4930eeab9db97d57e4e16f718a2 Mon Sep 17 00:00:00 2001 From: Glen Whitney Date: Mon, 26 Aug 2024 20:33:43 +0000 Subject: [PATCH] Update Examples --- Examples.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Examples.md b/Examples.md index 8e95f58..d053471 100644 --- a/Examples.md +++ b/Examples.md @@ -1008,3 +1008,9 @@ as the spirit moves you. #### if-let It seems the only new point relevant to Husht that arises here is the need to try to do auto-import for destructuring if-let (and maybe just destructuring lets as well), so that if Foo is a enum with variants Bar and Baz, and `a` is of type Foo, then you can write just `if let Bar = a ...` rather than `if let Foo::Bar = a ...`. (To be clear, the intention is to tightly scope these auto-imports so that the name Bar doesn't "leak" into the surrounding code from places in which there is a clear implication (such as destructuring a Foo) that they should be in scope. + +#### let-else +#### while-let + +Apparently nothing else new in these sections. +