Please enable JavaScript.
Coggle requires JavaScript to display documents.
New Features (auto (explicit a variable should have automatic declaration,…
New Features
auto
-
-
-
in C++14: extended to support auto for functions
auto add(int x, int y) { return x+y; }
trailing return syntax: auto add(int x, int y) -> int;
-
-
-
-
-
-
-
-
-
-
-