Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

class template specialization with constraint / concept

c++ c++17 c++-concepts

Class member variables based on variadic template

Brace elision in std::array<std::vector>

How can classes with `std::variant` members be copied safely?

c++ c++17 std-variant

Why is extern required for const int but not for const char*

c++ c++17 extern

std::byte on odd platforms

c++ c++17

"structured bindings" vs "decomposition declarations"

c++ c++17

Errors when using constexpr-if: expected '(' before 'constexpr'

c++ c++17 if-constexpr

Order of Evaluation for Fold Expressions

c++ c++17 fold-expression

How to make std::filesystem::directory_iterator to list filenames in order

c++ filesystems c++17

How to properly forward Invocable types

How to initialize const containers with generators in modern C++?

C++ "forgetting" that variable is constexpr when used as function argument

c++ c++17 constexpr

Use std::optional as a regular pointer vs use has_value() and value

c++ c++17 stdoptional

Tree elements initialized with references to emplaced deque members results in nullptr for this

c++ c++17

How to decide constexpr to return a reference or not

Rationale behind std::bool_constant

c++ c++17

Is difference between two pointers legal c++17 constant expression?

Will the C++17 standard include "std::byte"?

c++ standards c++17

std::reduce seems to convert results to integers [duplicate]

c++ c++17