Searched defs:equal_to_x (Results 1 – 1 of 1) sorted by relevance
19 struct equal_to_x struct21 typedef bool result_type;22 typedef Arg argument_type;24 explicit equal_to_x(Arg x) : m_x(x) {} in equal_to_x() argument25 bool operator()(Arg x) const { return x == m_x; } in operator ()()28 Arg m_x;