dsplib 1.1.0
C++ DSP library for MATLAB-like coding
Loading...
Searching...
No Matches
indexing.h
1#pragma once
2
3namespace dsplib {
4namespace indexing {
5
6struct end_t
7{
8 explicit constexpr end_t(int) {
9 }
10};
11
12constexpr end_t end{0};
13
14} // namespace indexing
15
16} // namespace dsplib
Definition indexing.h:7