std::hash
De cppreference.com
< cpp | memory | shared ptr
|
|
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 T> struct hash<shared_ptr<T>>; |
(desde C++11) | |
La especialización de plantilla de std::hash para std::shared_ptr<T> permite a los usuarios obtener los valores hash de los objetos de tipo std::shared_ptr<T> .
Original:
The template specialization of std::hash for std::shared_ptr<T> allows users to obtain hashes of objects of type std::shared_ptr<T>.
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.
Para un std::shared_ptr<T> p dado, esta especialización se asegura de que std::hash<std::shared_ptr<T>>()(p) == std::hash<T*>()(p.get()) .
Original:
For a given std::shared_ptr<T> p, this specialization ensures that std::hash<std::shared_ptr<T>>()(p) == std::hash<T*>()(p.get()).
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.
[editar] Ejemplo
| This section is incomplete Reason: no example |
[editar] Ver también
| (C++11) |
hash function object (clase de plantilla) |

