MCPcopy 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
32template <size_t N>
33static inline std::array<int, N> zero_array ()
34{
35 std::array<int, N> result;
36 result.fill (0);
37 return result;
38}
39
40static inline std::array<int, 1> make_array (int size0)
41{

Callers

nothing calls this directly

Calls 1

fillMethod · 0.80

Tested by

no test coverage detected