-
It would be nice if angle bracket matching worked when working with deeply nested templates. I suspect this is impossible to do with the regular expression mechanism due to the difficulty of parsing t…
-
C++ allows for nested `structures`, `classes`, `unions` and `typedef` declarations, which are often used in template metaprogramming. For example, consider definitions of the `std::basic_string` (`std…
-
Hello. I would like to propose language-integrated semantic templates for N3. Ways of delivering semantic templates for users include: (1) the semantic modeling of templates, resembling [OTTR](https:/…
-
Based on examples I've seen provided by Bagatto + Temple, there doesn't seem to be a way to define a layout that can be referenced from another template so that it "wraps" it. Instead, you have to pie…
-
Encouraged by our Generics discussion in #17, let's talk about our previously chosen metaprogramming technique: [hygienic macros](http://en.wikipedia.org/wiki/Hygienic_macro).
-
The repository's README says it is intended for people who "don't want to (or can't) use the full-blown Range-V3". This is a vague statement. difficult to understand. I mean, other than the fact that …
-
# Description
Lately Azure seems to have reduced the free space available on their VMs and specifically on Linux.
They've always guaranteed 10GB of space, but for debug builds we use more than that.…
-
# Summary
I observed that assigning or copying vector integer elements via STL algorithm with changed bit width does not engage vectorization, whereas manually-written index-based loop is vectoriz…
-
@roystgnr we have this in `compare_types`:
```c++
// We can define CompareTypes template specializations with user types
// asymmetrically, to assist in disambiguation of templated functions
// or…
-
I'm working with some code that filters specific coproducts out of an `mpsc` and running into problems. (Originally this was a huge enum of disjoint structs and I'm trying to rewrite it using frunk be…