Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

Is there a better alternative to std::remove_if to remove elements from a vector?

Why wasn't yield added to C++0x?

c++ c++11 yield c++17

Why does this usage of C++17 if constexpr fail?

What is the purpose of std::byte?

c++ byte c++17

Do const references in structured bindings extend the lifetime of the decomposed object?

int a=1, is a || 1 a constant expression?

What does std::includes actually do?

Is there sense in using const std::string& arguments in C++17?

c++ c++17

Why doesn't an if constexpr make this core constant expression error disappear?

Why does const auto &p{nullptr} work while auto *p{nullptr} doesn't in C++17?

c++ c++17 auto nullptr

std::ptr_fun replacement for c++17

c++ c++17

Lambda passed to template not defined

c++ templates lambda c++17

Correctly propagating a `decltype(auto)` variable from a function

Constructor conditionally marked explicit

c++ c++17

Contiguous iterator detection

Should reading negative into unsigned fail via std::cin (gcc, clang disagree)?

Compile-time reflection in C++1z? [closed]

How to enable C++17 on Mac?

c++ macos clang c++17 darwin

C++17 lambda capture *this

c++ lambda c++17 c++-faq

What do we need std::as_const() for?