MCPcopy Create free account
hub / github.com/TorqueGameEngines/Torque3D / copy

Method copy

Engine/source/core/bitVector.h:192–197  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

190}
191
192inline void BitVector::copy( const BitVector &from )
193{
194 _resize( from.getSize(), false );
195 if (mSize != 0)
196 dMemcpy( mBits, from.getBits(), getByteSize() );
197}
198
199inline BitVector& BitVector::operator=( const BitVector &r)
200{

Callers 1

setFormatMethod · 0.45

Calls 3

dMemcpyFunction · 0.50
getSizeMethod · 0.45
getBitsMethod · 0.45

Tested by

no test coverage detected