MCPcopy Create free account
hub / github.com/Pagghiu/SaneCppLibraries / push_back

Method push_back

Libraries/Plugin/Plugin.h:63–71  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

61 [[nodiscard]] constexpr bool isEmpty() const { return numValues == 0; }
62
63 [[nodiscard]] constexpr bool push_back(const T& value)
64 {
65 if (numValues < N)
66 {
67 values[numValues++] = value;
68 return true;
69 }
70 return false;
71 }
72
73 constexpr T* begin() { return values; }
74 constexpr T* end() { return values + numValues; }

Callers 15

buildMethod · 0.45
configureSmallSCProgramFunction · 0.45
DebugVisualizersTestMethod · 0.45
PluginTestMethod · 0.45
createMethod · 0.45
ArrayTestMethod · 0.45

Calls

no outgoing calls

Tested by 15

configureSmallSCProgramFunction · 0.36
DebugVisualizersTestMethod · 0.36
PluginTestMethod · 0.36
createMethod · 0.36
ArrayTestMethod · 0.36
arraySnippetMethod · 0.36