Nugget
Public Types | Public Member Functions | Protected Attributes | List of all members
eastl::const_mem_fun1_t< Result, T, Argument > Class Template Reference

#include <functional.h>

Inheritance diagram for eastl::const_mem_fun1_t< Result, T, Argument >:
Inheritance graph
[legend]
Collaboration diagram for eastl::const_mem_fun1_t< Result, T, Argument >:
Collaboration graph
[legend]

Public Types

typedef Result(T::* MemberFunction) (Argument) const
 
- Public Types inherited from eastl::binary_function< const T *, Argument, Result >
typedef const T * first_argument_type
 
typedef Argument second_argument_type
 
typedef Result result_type
 

Public Member Functions

 const_mem_fun1_t (MemberFunction pMemberFunction)
 
Result operator() (const T *pT, Argument arg) const
 

Protected Attributes

MemberFunction mpMemberFunction
 

Detailed Description

template<typename Result, typename T, typename Argument>
class eastl::const_mem_fun1_t< Result, T, Argument >

const_mem_fun1_t

Const member function with one argument. Note that we inherit from unary_function<const T*, Result> instead of what the C++ standard specifies: unary_function<T*, Result>. The C++ standard is in error and this has been recognized by the defect group.


The documentation for this class was generated from the following file: