MCPcopy Create free account
hub / github.com/defold/defold / pop_back

Method pop_back

engine/dlib/src/basis/transcoder/basisu_containers.h:639–648  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

637 }
638
639 inline void pop_back()
640 {
641 assert(m_size);
642
643 if (m_size)
644 {
645 m_size--;
646 scalar_type<T>::destruct(&m_p[m_size]);
647 }
648 }
649
650 inline void insert(uint32_t index, const T* p, uint32_t n)
651 {

Callers 5

TEST_FFunction · 0.45
retrieveMethod · 0.45
wait_for_allMethod · 0.45
job_threadMethod · 0.45

Calls 2

destructFunction · 0.85
assertFunction · 0.50

Tested by 1

TEST_FFunction · 0.36