Inkonsistenz in strukturierten Bindungsdeklarationen in C ++C++

Programme in C++. Entwicklerforum
Anonymous
 Inkonsistenz in strukturierten Bindungsdeklarationen in C ++

Post by Anonymous »

Code: Select all

#include 
#include 

struct my_struct {
const std::tuple t{5, 3.14};

template
decltype(std::get(t)) get() {
return std::get(t);
}
};

namespace std {
template
struct tuple_size :
integral_constant<
std::size_t,
std::tuple_size_v> {
};

template
struct tuple_element {
using type = tuple_element_t<
i,
decltype(std::declval().t)>;
};
}

int main() {
my_struct s;

auto [x, y] = s;
std::cout

Quick Reply

Change Text Case: 
   
  • Similar Topics
    Replies
    Views
    Last post
  • TypScript Regulärer Expression Inkonsistenz
    by Anonymous » » in JavaScript
    0 Replies
    3 Views
    Last post by Anonymous
  • CSS -Taste Animation Inkonsistenz
    by Anonymous » » in CSS
    0 Replies
    1 Views
    Last post by Anonymous