1
0
forked from Alepha/Alepha

9 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
541a945605 IWYU for OStreamable using delimited list. 2024-04-04 22:25:56 -04:00
379a2b4dc2 Start using the stream adaptor. 2024-04-04 18:07:41 -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
e1d3374e09 Delimiters helpers which work with ostream helpers. 2023-10-23 03:31:23 -04:00
3a92d2b788 OStream automatic generation for aggregates.
I still have to sort out the extended capabilities system and
implement the ostream_lens system.
2023-10-23 01:50:47 -04:00