OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <!-- | 2 <!-- |
3 Copyright 2014 The Chromium Authors. All rights reserved. | 3 Copyright 2014 The Chromium Authors. All rights reserved. |
4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
5 found in the LICENSE file. | 5 found in the LICENSE file. |
6 --> | 6 --> |
7 <html> | 7 <html> |
8 <head> | 8 <head> |
9 <meta charset="utf-8"> | 9 <meta charset="utf-8"> |
10 <link rel="stylesheet" href="c++11.css"> | 10 <link rel="stylesheet" href="c++11.css"> |
(...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
379 <td><code>T(T&& t)</code> and <code>T& operator=(T&& t)</cod
e></td> | 379 <td><code>T(T&& t)</code> and <code>T& operator=(T&& t)</cod
e></td> |
380 <td>Reference that only binds to a temporary object</td> | 380 <td>Reference that only binds to a temporary object</td> |
381 <td>TODO: documentation link</td> | 381 <td>TODO: documentation link</td> |
382 <td></td> | 382 <td></td> |
383 </tr> | 383 </tr> |
384 | 384 |
385 <tr> | 385 <tr> |
386 <td>Static Assertions</td> | 386 <td>Static Assertions</td> |
387 <td><code>static_assert(<i>bool</i>, <i>string</i>)</code></td> | 387 <td><code>static_assert(<i>bool</i>, <i>string</i>)</code></td> |
388 <td>Tests compile-time conditions</td> | 388 <td>Tests compile-time conditions</td> |
389 <td><<a href="http://en.cppreference.com/w/cpp/language/static_assert">Static As
sertion</a></td> | 389 <td><a href="http://en.cppreference.com/w/cpp/language/static_assert">Static Ass
ertion</a></td> |
390 <td></td> | 390 <td></td> |
391 </tr> | 391 </tr> |
392 | 392 |
393 <tr> | 393 <tr> |
394 <td>Union Class Members</td> | 394 <td>Union Class Members</td> |
395 <td><code>union <i>name</i> { <i>class</i> <i>var</i>}</code></td> | 395 <td><code>union <i>name</i> { <i>class</i> <i>var</i>}</code></td> |
396 <td>Allows class type members</td> | 396 <td>Allows class type members</td> |
397 <td><a href="http://en.cppreference.com/w/cpp/language/union"> | 397 <td><a href="http://en.cppreference.com/w/cpp/language/union"> |
398 Union declarations</a></td> | 398 Union declarations</a></td> |
399 <td></td> | 399 <td></td> |
(...skipping 554 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
954 </tr> | 954 </tr> |
955 | 955 |
956 </tbody> | 956 </tbody> |
957 </table> | 957 </table> |
958 | 958 |
959 </details> | 959 </details> |
960 | 960 |
961 </div> | 961 </div> |
962 </body> | 962 </body> |
963 </html> | 963 </html> |
OLD | NEW |