std::hash<std::shared_ptr>

The template specialization of std::hash for std::shared_ptr allows users to obtain hashes of objects of type std::shared_ptr.

# Declarations

template< class T >
struct hash<std::shared_ptr<T>>;

(since C++11)

# Example

This section is incompleteReason: no example

# See also