Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/ShahjalalShohag/code-library
/ clear
Method
clear
Math/Basis Vector.cpp:10–13 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
8
struct Basis {
9
T basis[B]; int sz;
10
void clear() {
11
memset(basis, 0, sizeof basis);
12
sz = 0;
13
}
14
Basis() {
15
clear();
16
}
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected