Function object for hashing an unsigned 64-bit number. More...
#include <Functor.h>
| Public Member Functions | |
| unsigned long | operator() (const ACE_UINT64 &t) const | 
| Simply returns t. | |
Function object for hashing an unsigned 64-bit number.
Definition at line 271 of file Functor.h.
| unsigned long ACE_Hash< ACE_UINT64 >::operator() | ( | const ACE_UINT64 & | t | ) | const  [inline] | 
Simply returns t.
Definition at line 157 of file Functor.inl.
{
#if (ACE_SIZEOF_LONG == 4)
  return ACE_U64_TO_U32 (t);
#else
  return static_cast<unsigned long> (t);
#endif /* ACE_SIZEOF_LONG */
}
 1.7.0
 1.7.0