Home | History | Annotate | Download | only in pb_ds

Lines Matching refs:cmp_fn

66    *  @tparam Cmp_Fn	    	Comparison functor.
80 typename Cmp_Fn = std::less<_Tv>,
84 : public detail::container_base_dispatch<_Tv, Cmp_Fn, _Alloc, Tag>::type
88 typedef Cmp_Fn cmp_fn;
95 typedef typename detail::container_base_dispatch<_Tv, Cmp_Fn, _Alloc,
115 /// copied by the Cmp_Fn object of the container object.
116 priority_queue(const cmp_fn& r_cmp_fn) : base_type(r_cmp_fn) { }
128 /// will be copied by the cmp_fn object of the container object.
130 priority_queue(It first_it, It last_it, const cmp_fn& r_cmp_fn)