Tagged: C++

0

Case insensitive string comparison in C++

(Not an original article) The standard library component std::basic_string<> (better known as std::string, which is a convenient typedef for std::basic_string<char>), is an important and widely used element of the standard C++ library. The declaration of basic_string<> in the standard library...

0

Boost – Thread pool

Boost Library Boost is a collection of high-quality C++ libraries and works on almost any modern operating system, including UNIX and Windows variants Compiling boost library bjam toolset=msvc-6.0 link=static link=dynamic threading=multi   Features Policy-based thread pool implementation Scheduling policies: fifo,...