libstdc++
|
__gnu_pbds::priority_queue< _Tv, Cmp_Fn, Tag, _Alloc >::priority_queue | ( | const cmp_fn & | r_cmp_fn | ) | [inline] |
Constructor taking some policy objects. r_cmp_fn will be copied by the Cmp_Fn object of the container object.
Definition at line 116 of file priority_queue.hpp.
__gnu_pbds::priority_queue< _Tv, Cmp_Fn, Tag, _Alloc >::priority_queue | ( | It | first_it, |
It | last_it | ||
) | [inline] |
Constructor taking __iterators to a range of value_types. The value_types between first_it and last_it will be inserted into the container object.
Definition at line 122 of file priority_queue.hpp.
__gnu_pbds::priority_queue< _Tv, Cmp_Fn, Tag, _Alloc >::priority_queue | ( | It | first_it, |
It | last_it, | ||
const cmp_fn & | r_cmp_fn | ||
) | [inline] |
Constructor taking __iterators to a range of value_types and some policy objects The value_types between first_it and last_it will be inserted into the container object. r_cmp_fn will be copied by the cmp_fn object of the container object.
Definition at line 130 of file priority_queue.hpp.