| 90 | friend std::ostream &operator<<<> (std::ostream &out, const BrainFlowArray<T, Dim> &array); |
| 91 | |
| 92 | BrainFlowArray () |
| 93 | : length (0) |
| 94 | , size (zero_array<Dim> ()) |
| 95 | , stride (make_stride (zero_array<Dim> ())) |
| 96 | , origin (nullptr) |
| 97 | { |
| 98 | } |
| 99 | |
| 100 | ~BrainFlowArray () |
| 101 | { |
nothing calls this directly
no test coverage detected