Searched defs:priority_queue_base_dispatch (Results 1 – 1 of 1) sorted by relevance
/openbsd/gnu/gcc/libstdc++-v3/include/ext/pb_ds/detail/ |
H A D | priority_queue_base_dispatch.hpp | 65 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, pairing_heap_tag, Allocator> struct 67 typedef pairing_heap_< Value_Type, Cmp_Fn, Allocator> type; 71 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, binomial_heap_tag, Allocator> struct 73 typedef binomial_heap_< Value_Type, Cmp_Fn, Allocator> type; 77 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, rc_binomial_heap_tag, Allocator> struct 79 typedef rc_binomial_heap_< Value_Type, Cmp_Fn, Allocator> type; 83 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, binary_heap_tag, Allocator> struct 85 typedef binary_heap_< Value_Type, Cmp_Fn, Allocator> type; 89 struct priority_queue_base_dispatch<Value_Type, Cmp_Fn, thin_heap_tag, Allocator> struct 91 typedef thin_heap_< Value_Type, Cmp_Fn, Allocator> type;
|