Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++-standard-library

Does C++11 enforce pow(double, int) to use the slower pow(double, double)? [duplicate]

Functors: templated struct vs templated operator()

Why can pointers to non-static member functions not be used as a unary predicate for standard library algorithms?

What are the rules for standard library containers and incomplete types?

Qt: Qt classes vs. standard C++

c++ qt c++-standard-library

Can std::forward_list members be implemented as static?

C++ standard library implementations in different compilers

Why can't I construct optional<T> with an optional<S> (for S!=T)?

Get POSIX epoch as system_clock::time_point

Implementing a "string pool" that is guaranteed not to move

Why does std::min(std::initializer_list<T>) take arguments by value?

How can I use a std::valarray to store/manipulate a contiguous 2D array?

Comparing std::string and C-style string literals

Are C++11 containers supported by Cython?

Why is there no operator< for class std::weak_ptr? [duplicate]

c++ c++-standard-library

Why are the std::atomic_{char,schar,etc.} typedefs allowed to be typedefs to a base class of std::atomic<T>, and not to atomic<T> only?

Can a C++14/17 project use binary libraries compiled using C++11 standard or does the source code need to be recompiled?

Why cannot I use an instantiation of std::make_shared as a pointer to function?

Why is there a std::move in both <algorithm> and <utility>