-
Hi,
I figure out that `universal_formatter` from the proposal does not work and here is the closest I could get with the current implementation:
```
#include
#include
template constexpr voi…
-
P2996 remains fairly vague on template splicers. But syntaxes like:
```cpp
template
consteval T fn(T value) { return value; }
constexpr auto R = ^fn;
static_assert(template [:R:](4) == 4); …
-
Hello, I'm really enjoying trying out your project, and I'd like to thank everyone who is making it possible.
**Feature Proposition**
I think it would be interesting to guarantee that the order of…
-
[P3096](https://wg21.link/p3096) has proposed the inclusion of a `parameters_of` metafunction for P2996. It would be great to gain implementation experience with this proposed feature.
-
I stumbled in weird compiler error, code in question : https://godbolt.org/z/Yox46WPMd
in short
```
constexpr auto reflA = ^A;
form::util::printMembers(); //
-
https://github.com/bloomberg/clang-p2996/blob/d76d653722eaa7d6b45948f6e57967fb78302314/libcxx/include/experimental/meta#L769
https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2023/p2996r1.html#ns…
-
cpprefjp雑談部屋ルール
- issueに起こすほどでもない雑多な議論をする場所です
- 通知がうるさいと感じた方は、issue個別で通知をオフにできるので、そちらをご利用ください
- 個人のつぶやきをゆるく投稿してもらってOKです
- cpprefjpメンバー以外の投稿も歓迎します
- X/Twitterなど、ほかの場所で発せられたcpprefjpの問題などがあったら、ここで…
-
Is there a way to reflect member functions?
If possible, this could fix Boost-ext/te
-
Given a scoped enum
```cpp
enum class EnumCls { A, B, C };
```
the using-enum-declatation
```cpp
using enum [:^EnumCls:];
```
fails to compile. Note that if the scoped enum is specified usin…
-
I'm not actually sure whether this should work or not, but it shouldn't yield a compiler crash either way. Example is [here](https://godbolt.org/z/qjfPv1E8r).