Home
last modified time | relevance | path

Searched defs:equal_to_x (Results 1 – 1 of 1) sorted by relevance

/aosp_15_r20/external/sdv/vsomeip/third_party/boost/range/test/test_function/
Dequal_to_x.hpp19 struct equal_to_x struct
21 typedef bool result_type;
22 typedef Arg argument_type;
24 explicit equal_to_x(Arg x) : m_x(x) {} in equal_to_x() argument
25 bool operator()(Arg x) const { return x == m_x; } in operator ()()
28 Arg m_x;