BPHash
General object hashing library for C++
complex.hpp
Go to the documentation of this file.
1 /*! \file
2  * \brief Hashing of std::complex
3  */
4 
5 /* Copyright (c) 2016 Benjamin Pritchard <ben@bennyp.org>
6  * This file is part of the BPHash project, which is released
7  * under the BSD 3-clause license. See the LICENSE file for details
8  */
9 
10 #pragma once
11 
12 #include "bphash/Hasher.hpp"
13 #include <complex>
14 
15 namespace bphash {
16 
17 /*! \brief Hashing of std::complex */
18 template<typename T>
19 typename std::enable_if<is_hashable<T>::value, void>::type
20 hash_object( const std::complex<T> & a, Hasher & h)
21 {
22  h(a.real(), a.imag());
23 }
24 
25 
26 } // close namespace bphash
27 
std::enable_if< is_hashable< T >::value, void >::type hash_object(const std::array< T, N > &a, Hasher &h)
Hashing of std::array.
Definition: array.hpp:20
A class that hashes objects (header)
Class that is used to hash objects.
Definition: Hasher.hpp:78