Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

How to unpack std::tuple from C++ template?

c++ templates tuples c++17

Passing array element to template

c++ arrays templates c++17

Templated constexpr variable [duplicate]

c++ templates c++17 constexpr

How can `f();` be a declaration below?

What's the point of "The World's Dumbest Smart Pointer?" [duplicate]

c++ smart-pointers c++17

Is constexpr if with initializer guaranteed by the standard? 'constexpr(constexpr auto x = f(); x) { }'

c++ clang constexpr c++17

Detect whether operator exists and callable in c++ (considering static_asserts)

Why does "std::async" not work as expected?

c++ lambda std c++17

Inheritance and is_detected_v provides a strange result (C++17)

c++ templates c++17

Does guaranteed copy elision work with function parameters?

Call non constexpr from constexpr template function

c++17 making std::variant by generating cartesian product of pre-declared lists of types

Why is this direct initialization valid? (C++ 17)

Initialize a C++ struct like an array of unknown bound at compile time

How to get non-member get<N> to work for custom class in a namespace [C++17]

c++ std c++17 stdtuple

Clang claims constexpr member of generic lambda argument is not constexpr

Why does enable_if<>* = nullptr work when enable_if<> = void doesn't?

c++ templates c++17 enable-if

Most efficient safe way to cast std::map<int, std::shared_ptr<Base>> to std::map<int, std::shared_ptr<Derived>>

c++ casting c++17 shared-ptr

Default constructor expression and lvalues

Compile-Time Base64 Decoding in C++