STL examples
- std::find, std::find_if, std::find_if_not
- C++ Algorithm Library - find() Function
- auto (C++)
- Placeholder type specifiers (since C++11)
This is a paragraph.
The C++ STL Library section lists all functions avaiable...
Description The C++ function std::algorithm::find() finds the first occurrence of the element. It uses operator = for comparison.
Deduces the type of a declared variable from its initialization expression.
The C++ standard defines an original and a revised meaning for this keyword. Before Visual Studio 2010, the auto keyword declares a variable in the automatic storage class; that is, a variable that has a local lifetime. Starting with Visual Studio 2010, the auto keyword declares a variable whose type is deduced from the initialization expression in its declaration. The /Zc:auto[-] compiler option controls the meaning of the auto keyword.
For variables, specifies that the type of the variable that is being declared will be automatically deduced from its initializer.
This is a paragraph.
This is a paragraph.
This is a paragraph.
This is a paragraph.
This is a paragraph.
This is a paragraph.
This is a paragraph.
This is a paragraph.
This is a paragraph.
This is a paragraph.
This is a paragraph.
This is a paragraph.
This is a paragraph.
This is a paragraph.
No comments:
Post a Comment