MCPcopy Create free account
hub / github.com/apache/trafficserver / top

Method top

include/tscore/PriorityQueue.h:109–117  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

107
108template <typename T, typename Comp>
109PriorityQueueEntry<T> *
110PriorityQueue<T, Comp>::top()
111{
112 if (empty()) {
113 return nullptr;
114 } else {
115 return _v[0];
116 }
117}
118
119template <typename T, typename Comp>
120void

Callers 15

ExistsActiveSimpleKeyMethod · 0.45
InvalidateSimpleKeyMethod · 0.45
VerifySimpleKeyMethod · 0.45
PushIndentToMethod · 0.45
PopIndentToHereMethod · 0.45
PopAllIndentsMethod · 0.45
PopIndentMethod · 0.45
GetTopIndentMethod · 0.45
ScanFlowEndMethod · 0.45
ScanFlowEntryMethod · 0.45
OnSequenceEndMethod · 0.45
OnMapEndMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected