9 #ifndef anna_core_util_ExclusiveHash_hpp 10 #define anna_core_util_ExclusiveHash_hpp 24 typedef std::map <T, _K> container;
25 typedef typename container::value_type value_type;
39 typename container::iterator ii;
42 if((ii = a_container.find(t)) == a_container.end()) {
44 a_container.insert(value_type(t, result));
52 container a_container;
ExclusiveHash()
Definition: ExclusiveHash.hpp:31
_K calcule(const T &t)
Definition: ExclusiveHash.hpp:37
Definition: ExclusiveHash.hpp:23