Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in stl

char* vs std::string in c++ [closed]

c++ stl stdstring arrays

Is there a production ready lock-free queue or hash implementation in C++ [closed]

c++ stl lock-free

Why do I need std::get_temporary_buffer?

std::vector::resize() vs. std::vector::reserve()

c++ stl vector

What is the point of STL Character Traits?

Why would I prefer using vector to deque

c++ stl vector deque

std::string comparison (check whether string begins with another string)

c++ string stl compare

how to provide a swap function for my class?

c++ stl swap

Copy map values to vector in STL

c++ stl containers

How to implode a vector of strings into a string (the elegant way)

c++ string stl stdstring implode

How to choose between map and unordered_map?

Alternative to vector<bool>

c++ stl vector boolean

Why can't we declare a std::vector<AbstractClass>?

c++ stl abstract-class

std::map insert or std::map find?

c++ optimization stl stdmap

How to update std::map after using the find method?

c++ map stl stdmap

How can I create my own comparator for a map?

c++ stl stdmap

use std::fill to populate vector with increasing numbers

c++ stl

Which STL container should I use for a FIFO?

c++ stl fifo

In std::multiset is there a function or algorithm to erase just one sample (unicate or duplicate) if an element is found

c++ stl multiset

Why does std::stack use std::deque by default?

c++ stl containers