1
0
forked from Alepha/Alepha
Files
Alepha/template_for.test
ADAM David Alan Martin 32e6c36570 Rename the template_for header.
C++26 (I hope) is supposed to have this syntax:

```
template for( const auto &element: aggregate )
{
	...;
}
```

Thus, I've adjusted this gadget to have a similar name, to enable
simple mechanical code changes.  From Alepha, you'd use it
thus:

```
template_for( aggregate ) <=[&]( const auto &element )
{
	...;
};
```
2024-07-05 11:59:26 -04:00
..
2024-07-05 11:59:26 -04:00
2024-07-05 11:59:26 -04:00