<div dir="ltr"><div>Hi,</div><div><br></div><div>I think that it is very useful to have when working with immutable objects.</div><br>For the purposes of this mail, let's call the design described in the ambro-doc[1]:<br>reconstruction expression with implicit deconstructor (aka REWID).<br><br>Has it been considered to make the deconstructor pattern explicit in the reconstruction<br>expression (aka REWED)?<br>Doing so may remove the requirement to make names more significant in the language.<br><br>For example, given the following:<br><br>Point p = ...;<br>Point pp = p with(int x, int y) { x += 2; y = 0; }<br><br>We can interpret the reconstruction expression above as:<br><br>. Find a deconstructor and constructor pair that has a signature that matches (int, int)<br>. Deconstruct the target with the deconstructor<br>. Execute the block on RHS<br>. Invoke the constructor with the result.<br><br>If we split the reconstruction expression into three steps:<br><br>1. Extraction<br>2. Transformation<br>3. Construction<br><br>In REWID users are required only to do step 2 (transformation) and the<br>system handles 1 and 3. Whereas in REWED users are required to do step 1 and 2<br>and the system handles just step 3.<br><br># Other forms of REWED<br><br>1. Explicit Named deconstructor pattern<br>   <br>   Point pp = p with Point(int x, int y) {...}<br><br>2. Explicit Var deconstructor pattern<br><br>   Point pp = p with var(int x, int y) {...}<br><br>3. Explicit Unnamed deconstructor pattern<br>   <br>   Point pp = p with(int x, int y) {...}<br><br><br>We can extend form 1 to include factory pattern:<br><br>   Point pp = p with Point.factory(int x, int y) {...}<br><br><br># Advantages<br><br>1. No need to make names significant.<br>2. Can be combined with other patterns (e.g. unnamed pattern, var pattern)<br><br>   Point pp = p with(int x, _) { x = 0; }<br><br><br>Nyehamene.</div>