Skip to content

Latest commit

 

History

History
43 lines (31 loc) · 1.46 KB

const-mem-fun-ref-t-class.md

File metadata and controls

43 lines (31 loc) · 1.46 KB
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: const_mem_fun_ref_t Class
const_mem_fun_ref_t Class
02/21/2019
functional/std::const_mem_fun_ref_t
const_mem_fun_ref_t class
316ddbaa-9f46-4931-8eba-ea4ca66360ef

const_mem_fun_ref_t Class

An adapter class that allows a const member function that takes no arguments to be called as a unary function object when initialized with a reference argument. Deprecated in C++11, removed in C++17.

Syntax

template <class Result, class Type>
    class const_mem_fun_ref_t
: public unary_function<Type, Result>
{
    explicit const_mem_fun_t(Result (Type::* Pm)() const);
    Result operator()(const Type& left) const;
};

Parameters

Pm
A pointer to the member function of class Type to be converted to a function object.

left
The object that the Pm member function is called on.

Return Value

An adaptable unary function.

Remarks

The class template stores a copy of Pm, which must be a pointer to a member function of class Type, in a private member object. It defines its member function operator() as returning (left.* Pm)() const.

Example

The constructor of const_mem_fun_ref_t is not usually used directly; the helper function mem_fun_ref is used to adapt member functions. See mem_fun_ref for an example of how to use member function adaptors.