LLVM  8.0.1
Public Member Functions | Public Attributes | List of all members
llvm::on_first< FuncTy > Struct Template Reference

Function object to apply a binary function to the first component of a std::pair. More...

#include "llvm/ADT/STLExtras.h"

Collaboration diagram for llvm::on_first< FuncTy >:
Collaboration graph
[legend]

Public Member Functions

template<typename T >
auto operator() (const T &lhs, const T &rhs) const -> decltype(func(lhs.first, rhs.first))
 

Public Attributes

FuncTy func
 

Detailed Description

template<typename FuncTy>
struct llvm::on_first< FuncTy >

Function object to apply a binary function to the first component of a std::pair.

Definition at line 977 of file STLExtras.h.

Member Function Documentation

◆ operator()()

template<typename FuncTy >
template<typename T >
auto llvm::on_first< FuncTy >::operator() ( const T lhs,
const T rhs 
) const -> decltype(func(lhs.first, rhs.first))
inline

Definition at line 981 of file STLExtras.h.

Member Data Documentation

◆ func

template<typename FuncTy >
FuncTy llvm::on_first< FuncTy >::func

Definition at line 978 of file STLExtras.h.


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