MCPcopy Create free account
hub / github.com/ValveSoftware/steam-audio / Vector

Method Vector

core/src/core/vector.h:41–44  ·  view source on GitHub ↗

The default constructor initializes the vector to zero.

Source from the content-addressed store, hash-verified

39
40 // The default constructor initializes the vector to zero.
41 Vector()
42 {
43 memset(elements, 0, D * sizeof(T));
44 }
45
46 // Initializes the vector using an initializer list. The number of elements in the initializer list must
47 // match the value of the template parameter D.

Callers

nothing calls this directly

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected