Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in std

How do I pass std::array as a template parameter with a varying number of elements in C++?

c++ parameters std stdarray

Disambiguating std::isalpha() in C++

c++ std sfml

Template member function argument deduction [duplicate]

c++ function templates std

std::generate - How do I use a random number generator?

c++ boost random std ublas

How can I transparently process std::vector of T and std::vector of std::shared_ptr<T> in a template?

std::shared_ptr<T[]> VS std::array<T, size>/std::vector<T>

c++ c++17 std shared-ptr

How to ensure that inheriting classes are implementing a friend function (ostream)?

c++ inheritance overriding std

Are there any practical limitations to only using std::string instead of char arrays and std::vector/list instead of arrays in c++?

c++ arrays list vector std

Initializing std::shared_ptr with std::make_shared having an std::array as argument

c++ c++11 std shared-ptr

Why is there no language support in C++ for all C++ standard library type traits?

c++ insert empty vector can not use braces

c++ vector std

Why is a sort function in the global namespace?

c++ std

Why doesn't this code using std::ranges::find on an std::views::zip compile?

c++ std std-ranges c++23

Is there a C++ structure like a map but instead of key to values I get a handle to a value?

c++ std

Use std::variant as class member and apply visitor

c++ std variant

What's a good implementation of applying a unary function to some elements of a vector?

c++ algorithm c++11 std

When is a multiset sorted? Insertion, iteration, both?

C++ STD find_last_of not working?

c++ string std

Why does std::cout print floats, doubles and long doubles to the same decimal precision? [duplicate]

How does shared_ptr<T> detect that T derives from enable_shared_from_this<T>?