Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

Is default initializing class members always advisable?

c++ initialization c++17

Is there a more C++ elegant implementation to complete the function jump?

c++ design-patterns c++17

Should I check if a vector is empty before I use std::transform

c++ c++11 c++14 c++17

Is `void_t` necessary to check if a class has a method with a specific signature?

Is the "used after it was moved [bugprone-use-after-move]" warning a real problem here?

c++ c++17 move clang-tidy

Is there a way to iterate over two containers without using two for loops

c++ c++11 c++14 c++17

Am I using std::move() too often?

c++ c++17 move move-semantics

No diagnostic for pack expansion in std::index_sequence

c++ c++17

How to use copy elision when function is called in if block

No member named 'size' in namespace 'std'

c++ c++17

(Shared) mutex in C++

Make argument explicit?

c++ c++17 explicit

'for_each_n' is not a member of 'std' in C++17

c++ foreach c++17

Is it legal to use template class name in derived class without template arguments?

How to shadow existing variables when destructuring in C++?

how to convert C-style compile-time arrays to std::array

c++ arrays c++17

Sum the components of a tuple up by using std::get, std::tuple_size, std::tuple_element

C++ - Why is std::function<some_type_t, void> invalid?

c++ templates c++17 void

Can I exclude a number or subrange of numbers inside a range of random numbers in modern C++?

c++ c++11 random c++17

How to find out if integer_sequence contains given number in compile-time?