cpp/thread/promise/uses allocator: Unterschied zwischen den Versionen
Aus cppreference.com
(Translated from the English version using Google Translate) |
P12bot (Diskussion | Beiträge) K (Use {{lc}}. Update links. Various fixes.) |
||
(4 dazwischenliegende Versionen von 3 Benutzern werden nicht angezeigt) | |||
Zeile 1: | Zeile 1: | ||
+ | |||
{{cpp/title|std::uses_allocator{{small|{{tr|<std::promise>|<std::promise>}}}}}} | {{cpp/title|std::uses_allocator{{small|{{tr|<std::promise>|<std::promise>}}}}}} | ||
{{cpp/thread/promise/navbar}} | {{cpp/thread/promise/navbar}} | ||
Zeile 6: | Zeile 7: | ||
}} | }} | ||
− | {{tr|Bietet eine Spezialisierung der {{ | + | {{tr|Bietet eine Spezialisierung der {{|std::uses_allocator}} Typ Merkmal für {{|std::promise}} .|Provides a specialization of the {{|std::uses_allocator}} type trait for {{|std::promise}}.}} |
===Siehe auch=== | ===Siehe auch=== | ||
− | {{ | + | {{begin}} |
− | {{ | + | {{| cpp/memory/uses allocator}} |
− | {{ | + | {{end}} |
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ |
Aktuelle Version vom 1. Juli 2013, 20:54 Uhr
![]() |
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
template< class R, class Alloc > struct uses_allocator<std::promise<R>, Alloc> : true_type { }; |
(seit C++11) | |
Bietet eine Spezialisierung der std::uses_allocator Typ Merkmal für std::promise .
Original:
Provides a specialization of the std::uses_allocator type trait for std::promise.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[Bearbeiten] Siehe auch
(C++11) |
prüft, ob der angegebene Typ allokatorgestützte Erzeugung unterstützt. (Klassen-Template) |