MCPcopy Create free account
hub / github.com/PaddlePaddle/Paddle / insert

Method insert

paddle/utils/small_vector.h:830–832  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

828
829 public:
830 iterator insert(iterator I, T &&Elt) {
831 return insert_one_impl(I, this->forward_value_param(std::move(Elt)));
832 }
833
834 iterator insert(iterator I, const T &Elt) {
835 return insert_one_impl(I, this->forward_value_param(Elt));

Callers

nothing calls this directly

Calls 12

forward_value_paramMethod · 0.80
isReferenceToStorageMethod · 0.80
set_sizeMethod · 0.80
assertSafeToAddRangeMethod · 0.80
appendFunction · 0.50
copyFunction · 0.50
beginMethod · 0.45
endMethod · 0.45
sizeMethod · 0.45
uninitialized_moveMethod · 0.45
uninitialized_copyMethod · 0.45

Tested by

no test coverage detected