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

Method remove

Libraries/Containers/Vector.h:233–236  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

231 /// @return `true` if at least one item has been removed
232 template <typename U>
233 [[nodiscard]] bool remove(const U& value) noexcept
234 {
235 return removeAll([&](auto& item) { return item == value; });
236 }
237};
238
239/// @brief A Vector that can hold up to `N` elements inline and `> N` on heap

Callers 9

clearMethod · 0.45
DebugVisualizersTestMethod · 0.45
simpleMethod · 0.45
testBasicTypeMethod · 0.45
ArenaMapTestMethod · 0.45
renderTableRowsFunction · 0.45
triggerDownloadFunction · 0.45
hideFunction · 0.45

Calls 1

removeAllFunction · 0.85

Tested by 5

DebugVisualizersTestMethod · 0.36
simpleMethod · 0.36
testBasicTypeMethod · 0.36
ArenaMapTestMethod · 0.36