about
      10/27/2022
      C++ Story Libraries
      
      
      Chapter #9 - C++ Libraries
Index of library code
9.0 Prologue
9.1 Libraries
| Library | Description | 
|---|---|
| Standard Libraries reference | Annotated list of all the standard library headers from cppreference.com | 
| Standard I/O Streams | Supports stream input and output for terminal, files, and strings | 
| Standard Template Library (STL) | Provides containers, algorithms that act on containers, and iterators that join the algorithms to containers. | 
| Standard File System | Supports operations on files, paths, and directories | 
| Standard Threads | Provides facility for managing threads with locks, critical sections, and packaging for asynchronous operations. | 
| Sockets | Classes for starup and shutdown, client sockets, connecting sockets, and listening sockets | 
| XmlDocument | XmlDocument class and XmlElement classes | 
| Survey of Boost Libraries | Quick summaries of the Boost libraries most relevant to this site | 
| Other Third-party Libraries | Quick survey of some interesting libraries | 
9.2 References
KissNet
Smart Output Iterators - Jonathan Boccara
Smart output iterators become pipes - Jonathan Boccara
C++ Seasoning (video) - Sean Parent - Going Native 2013
string formatting (see answer 15) - stackoverflow