Skip to content

Latest commit

 

History

History
80 lines (66 loc) · 2.24 KB

File metadata and controls

80 lines (66 loc) · 2.24 KB
title const_mem_fun1_t Class | Microsoft Docs
ms.custom
ms.date 11/04/2016
ms.reviewer
ms.suite
ms.technology
cpp-standard-libraries
ms.tgt_pltfrm
ms.topic article
f1_keywords
xfunctional/std::const_mem_fun1_t
const_mem_fun1_t
dev_langs
C++
helpviewer_keywords
const_mem_fun1_t class
ms.assetid 250fac30-9663-4133-9051-6303f76ea259
caps.latest.revision 20
author corob-msft
ms.author corob
manager ghogen
translation.priority.ht
cs-cz
de-de
es-es
fr-fr
it-it
ja-jp
ko-kr
pl-pl
pt-br
ru-ru
tr-tr
zh-cn
zh-tw

const_mem_fun1_t Class

An adapter class that allows a const member function that takes a single argument to be called as a binary function object when initialized with a pointer argument.

Syntax

template <class Result, class Type, class Arg>
class const_mem_fun1_t
 : public binary_function<const Type *, Arg, Result>  
{
    explicit const_mem_fun1_t(Result (Type::* _Pm)(Arg) const);
    Result operator()(const Type* _Pleft, Arg right) const;
 };

Parameters

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

_Pleft
The const object that the _Pm member function is called on.

right
The argument that is being given to _Pm.

Return Value

An adaptable binary function.

Remarks

The template class 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 ( _Pleft->* *Pm)(*Right) const.

Example

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

Requirements

Header: <functional>

Namespace: std

See Also

Thread Safety in the C++ Standard Library
C++ Standard Library Reference