Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

What does the standard say about char arrays as template arguments?

Innocent range based for loop not working

error: 'string_view' is not a member of 'std'

Are captureless lambda guaranteed to be empty by the standard?

c++ lambda c++17 c++20

Is it possible to check if a user literal is defined for given type and argument?

c++ templates sfinae c++17

C++ Templates - The Complete Guide: Understanding footnote comment about decltype and return type

Fold expressions and empty parameters pack: what's the expected result?

In C++17, why do associative containers have an `erase` member function that takes (non-`const`) `iterator`?

std::vector on forward declared type

Associativity of fold-expressions

Structured bindings for your own type that isn’t a struct or a tuple(via public member function)

std::filesystem::directory_iterator linker issue (C++17) [duplicate]

c++ c++17

Why isn't std::variant allowed to equal compare with one of its alternative types?

c++ c++17 std-variant

When do you need a null terminated string in a read-only scenario?

c++ string c++17 string-view

Static member access in constant expressions

Why does std::find_if(first, last, p) not take predicate by reference?

Using enum instead of struct for tag dispatching in C++

c++ c++17 tag-dispatching

Rationale of restrictive rules for extract and re-insert with map

Passing std::filesystem::path to a function segfaults

Can I initialize an array using the std::initializer_list instead of brace-enclosed initializer?