MCPcopy Create free account
hub / github.com/0xShug0/audio.cpp / pop_move

Method pop_move

external/llama_tokenizer/bpe-core.cpp:25–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

23 using std::priority_queue<T, Container, Compare>::priority_queue;
24
25 T pop_move() {
26 T item = std::move(this->c.front());
27 std::pop_heap(this->c.begin(), this->c.end(), this->comp);
28 this->c.pop_back();
29 return item;
30 }
31
32 void pop() = delete;
33};

Callers 1

tokenizeMethod · 0.80

Calls 2

beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected