Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

How to determine whether an object has heap allocated members?

c++ class templates c++17 member

Too many if/else statements in converting user inputs to types in C++

why c++ is rounding of big numbers to ceil and small numbers to floor [duplicate]

Why doesn't make_optional work for file streams?

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