MCPcopy Create free account
hub / github.com/Norbyte/bg3se / insert_at

Method insert_at

CoreLib/Base/BaseArray.h:762–770  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

760 }
761
762 void insert_at(size_type index, T const& value)
763 {
764 se_assert(index <= size_);
765 growIfNecessary();
766
767 new (&buf_[size_]) T(buf_[index]);
768 buf_[index] = value;
769 size_++;
770 }
771
772 void remove_at(size_type index)
773 {

Callers 2

ExtendNetworkingMethod · 0.80
ExtendNetworkingMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected