NAME

ACE_Hash - Function object for hashing

SYNOPSIS

#include <ace/Functor_T.h>

template<class TYPE> class ACE_Hash { public: u_long operator () (const TYPE &t) const; };

DESCRIPTION

Templatized classes for implementing function objects that are used in various places in ACE. There are currently two major categories of function objects in ACE: GOF Command Pattern objects, and STL-style functors for comparison of container elements. The command objects are invoked via an execute method, while the STL-style functors are invoked via an operator() method.

PUBLIC MEMBERS

u_long operator () (const TYPE &t) const;

AUTHOR

Chris Gill cdgill@cs.wustl.edu

Based on Command Pattern implementations originally done by

Carlos O'Ryan coryan@cs.wustl.edu, Douglas C. Schmidt schmidt@cs.wustl.edu, and Sergio Flores-Gaitan sergio@cs.wustl.edu

and on STL-style functor implementations originally done by

Irfan Pyarali irfan@cs.wustl.edu

LIBRARY

ace