The C Standard Library
The C++ Standard Library
The C++ STL Library
C++ Programming Resources
Selected Reading
The C++ Standard Library
- C++ Library - <valarray>
- C++ Library - <utility>
- C++ Library - <typeinfo>
- C++ Library - <tuple>
- C++ Library - <thread>
- C++ Library - <string>
- C++ Library - <stdexcept>
- C++ Library - <regex>
- C++ Library - <numeric>
- C++ Library - <new>
- C++ Library - <memory>
- C++ Library - <locale>
- C++ Library - <limits>
- C++ Library - <functional>
- C++ Library - <exception>
- C++ Library - <complex>
- C++ Library - <atomic>
- C++ Library - <streambuf>
- C++ Library - <sstream>
- C++ Library - <ostream>
- C++ Library - <istream>
- C++ Library - <iostream>
- C++ Library - <iosfwd>
- C++ Library - <ios>
- C++ Library - <iomanip>
- C++ Library - <fstream>
- C++ Library - Home
The C++ STL Library
- C++ Library - <iterator>
- C++ Library - <algorithm>
- C++ Library - <vector>
- C++ Library - <unordered_set>
- C++ Library - <unordered_map>
- C++ Library - <stack>
- C++ Library - <set>
- C++ Library - <queue>
- C++ Library - <map>
- C++ Library - <list>
- C++ Library - <forward_list>
- C++ Library - <deque>
- C++ Library - <bitset>
- C++ Library - <array>
C++ Programming Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
C++ Library - <tuple>
C++ Library - <tuple>
Introduction
These are objects that pack elements of -possibly- different types together in a single object, just pke pair objects do for pairs of elements, but generapzed for any number of elements. It is closely related to the pair class (defined in header
Classes
Sr.No. | Class & description |
---|---|
1 | It is an object capable to hold a collection of elements. Each element can be of a different type. |
Helper classes
Sr.No. | Helper classe & description |
---|---|
1 | It contains the information about tuple size. |
2 | It contains the information about tuple element type. |
Object creation
Sr.No. | Object creation & description |
---|---|
1 | It constructs tuple. |
2 | It forward as tuple. |
3 | It contains tie arguments. |
4 | It concatenate tuples. |
Element access
Sr.No. | Element access & description |
---|---|
1 | It is used to get element. |
Objects
Sr.No. | Object & description |
---|---|
1 | It ignores assignment. |