Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/brainflow-dev/brainflow
/ zero_array
Function
zero_array
src/utils/inc/brainflow_array.h:33–38 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
31
32
template <size_t N>
33
static inline std::array<int, N> zero_array ()
34
{
35
std::array<int, N> result;
36
result.fill (0);
37
return result;
38
}
39
40
static inline std::array<int, 1> make_array (int size0)
41
{
Callers
nothing calls this directly
Calls
1
fill
Method · 0.80
Tested by
no test coverage detected