Home
last modified time | relevance | path

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

/third_party/boost/boost/container/detail/
Dmpl.hpp67 struct select1st struct
69 typedef FirstType type;
72 BOOST_CONTAINER_FORCEINLINE const type& operator()(const T& x) const in operator ()()
76 BOOST_CONTAINER_FORCEINLINE type& operator()(T& x) in operator ()()
/third_party/boost/libs/python/src/object/
Dinheritance.cpp174 struct select1st struct
176 typedef typename tuples::element<0, Tuple>::type result_type;
178 result_type const& operator()(Tuple const& x) const in operator ()()
/third_party/boost/boost/graph/
Dastar_search.hpp281 template < typename A, typename B > struct select1st struct
283 typedef std::pair< A, B > argument_type;
284 typedef A result_type;
285 A operator()(const std::pair< A, B >& p) const { return p.first; } in operator ()()