You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Explore the idea of expanding over ranges of constexpr extent which do not require non-transient constexpr allocation.
A motivating example is the std::span returned by define_static_array; i.e., it would be great for this to work:
intfn(int i, int j) {
template for (constexprauto p : define_static_array(parameters_of(^^fn)) {
std::println("{} = {}", identifier_of(p), [:p:]);
}
return i + j;
}
The text was updated successfully, but these errors were encountered:
katzdm
added
feature
Feature or behavior from P2996 that is yet to be implemented
p2996-ext
A behavior not part of P2996, but proposed for a related paper
labels
Sep 10, 2024
Explore the idea of expanding over ranges of constexpr extent which do not require non-transient constexpr allocation.
A motivating example is the
std::span
returned bydefine_static_array
; i.e., it would be great for this to work:The text was updated successfully, but these errors were encountered: