problemscpp
A collection of my answers to algorithm problems in c++.
Public 成员函数 | 所有成员列表
acwing::acwing858_408::pair_equal结构体 参考

#include <acwing408.h>

Public 成员函数

template<class T1 , class T2 >
bool operator() (const pair< T1, T2 > &p1, const pair< T1, T2 > &p2) const
 

详细描述

在文件 acwing408.h152 行定义.

成员函数说明

◆ operator()()

template<class T1 , class T2 >
bool acwing::acwing858_408::pair_equal::operator() ( const pair< T1, T2 > &  p1,
const pair< T1, T2 > &  p2 
) const

在文件 acwing408.cpp703 行定义.

703 {
704 return p1.first == p2.first && p1.second == p2.second;
705 }

该结构体的文档由以下文件生成: