MCPcopy Create free account
hub / github.com/MariaDB/server / pop_back

Method pop_back

sql/mem_root_array.h:196–202  ·  view source on GitHub ↗

Removes the last element in the array, effectively reducing the container size by one. This destroys the removed element. */

Source from the content-addressed store, hash-verified

194 container size by one. This destroys the removed element.
195 */
196 void pop_back()
197 {
198 DBUG_ASSERT(!empty());
199 if (!has_trivial_destructor)
200 back().~Element_type();
201 m_size-= 1;
202 }
203
204 /**
205 Resizes the container so that it contains n elements.

Callers 14

end_objectMethod · 0.45
end_arrayMethod · 0.45
~Json_writer_structMethod · 0.45
acquire_bufferMethod · 0.45
popMethod · 0.45
trx_rollback_recoveredFunction · 0.45
rtr_adjust_parent_pathFunction · 0.45
rtr_pcur_move_to_nextFunction · 0.45
rtr_search_to_nth_levelFunction · 0.45
rtr_clean_rtr_infoFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected