Control Surface
main
MIDI Control Surface library for Arduino
|
#include <AH/Containers/Array.hpp>
An array wrapper for easy copying, comparing, and iterating.
T | The type of the elements in the array. |
N | The number of elements in the array. |
Public Types | |
using | type = T |
Public Member Functions | |
T & | operator[] (size_t index) |
Get the element at the given index. | |
const T & | operator[] (size_t index) const |
Get the element at the given index. | |
T * | begin () |
Get a pointer to the first element. | |
const T * | begin () const |
Get a pointer to the first element. | |
T * | end () |
Get a pointer to the memory beyond the array. | |
const T * | end () const |
Get a pointer to the memory beyond the array. | |
bool | operator== (const Array< T, N > &rhs) const |
Check the equality of all elements in two arrays. | |
bool | operator!= (const Array< T, N > &rhs) const |
Check the inequality of all elements in two arrays. | |
template<size_t Start = 0, size_t End = N - 1> | |
ArraySlice< T, abs_diff(Start, End)+1,(End< Start), false > | slice () |
Get a view on a slice of the Array. | |
template<size_t Start = 0, size_t End = N - 1> | |
ArraySlice< T, abs_diff(Start, End)+1,(End< Start), true > | slice () const |
Get a read-only view on a slice of the Array. | |
template<size_t Start = 0, size_t End = N - 1> | |
ArraySlice< T, abs_diff(Start, End)+1,(End< Start), true > | cslice () const |
Get a read-only view on a slice of the Array. | |
template<size_t Start, size_t End> | |
auto | slice () -> ArraySlice< T, abs_diff(Start, End)+1,(End< Start), false > |
template<size_t Start, size_t End> | |
auto | slice () const -> ArraySlice< T, abs_diff(Start, End)+1,(End< Start), true > |
Public Attributes | |
T | data [N] |
Static Public Attributes | |
static constexpr size_t | length = N |
Get a view on a slice of the Array.
Doesn't copy the contents of the array, it's just a reference to the original array.
Start | The start index of the slice. |
End | The end index of the slice. |
Get a read-only view on a slice of the Array.
Doesn't copy the contents of the array, it's just a reference to the original array.
Start | The start index of the slice. |
End | The end index of the slice. |