Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

Creating a structure with an expanded index sequence

Introduced intermediate variable in structured binding definition?

What are the rules for unpacking array elements to multiple variables in C++?

Nested call of variadic methods with an additional non-type template parameter of class templates [duplicate]

Using automatic conversion in Pybind11

c++ python-3.x c++17 pybind11

Is there a way to use boost::equality_comparable with aggregates without messing up the initialization syntax?

In a template argument, what rules allow the compiler to infer the number of items of an array?

How to properly handle windows paths with the long path prefix with std::filesystem::path

How to iterate over a list of smart pointers?

Can you achieve fn(x1 ^ fn(x0)) with a fold expression?

Can a C++ compiler perform RVO for a named const variable used for the return value?

C++20 converting between string/u8string and string_view/u8string_view

c++ c++17 c++20

How do I support any_cast to cast a custom class to a string?

c++ std c++17

How to get chrono time_point from year, month, day, hour, minute, second, millisecond?

c++ c++17 c++-chrono

Determine the parameter types of a function passed as a template parameter

Is std::from_chars supposed to handle uppercase hexadecimal exponents?

Advantages of string_view literals vs string literals in simple scenarios

c++ c++17 string-view

std::filesystem's parent_path() is wrong for file in current directory?

c++ c++17 std-filesystem

Confusing behaviour around mandatory elision of copy/move [duplicate]

"Invalid conversion" error when visiting a variant of functions

c++ c++17 variant