1
0
forked from Alepha/Alepha

8 Commits

Author SHA1 Message Date
970cfa3b62 Unify everything to template_for form. 2024-07-05 12:23:26 -04:00
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
58327d5afd We should be using sentry in our generated istream operators. 2024-04-04 13:56:26 -04:00
373b07e1c4 Apply the newer namespace rules and layout/formatting. 2024-04-02 23:32:02 -04:00
d1157cabf7 Start the C++23 adoption. 2023-11-07 05:30:50 -05:00
bb51660272 Simplify the delimiters 2023-10-31 02:17:27 -04:00
540e30ec18 Auto-generated istream operators respect delimiters now. 2023-10-29 05:58:55 -04:00
08971abb06 Add IStreamable helper. 2023-10-22 04:43:25 -04:00