Contains the implementation of LvArray::ArrayOfArraysView.
More...
Go to the source code of this file.
Contains the implementation of LvArray::ArrayOfArraysView.
◆ ARRAYOFARRAYS_ATOMIC_CAPACITY_CHECK
| #define ARRAYOFARRAYS_ATOMIC_CAPACITY_CHECK |
( |
|
i, |
|
|
|
previousSize, |
|
|
|
increase |
|
) |
| |
Check that the capacity of array i isn't exceeded when the size is increased by increase.
- Parameters
-
| i | The array index to check. |
| previousSize | The previous size of the array. |
| increase | The increases in the capacity. |
- Note
- This is only active when LVARRAY_BOUNDS_CHECK is defined.
◆ ARRAYOFARRAYS_CAPACITY_CHECK
| #define ARRAYOFARRAYS_CAPACITY_CHECK |
( |
|
i, |
|
|
|
increase |
|
) |
| |
Check that the capacity of array i isn't exceeded when the size is increased by increase.
- Parameters
-
| i | The array index to check. |
| increase | The increases in the capacity. |
- Note
- This is only active when LVARRAY_BOUNDS_CHECK is defined.
◆ ARRAYOFARRAYS_CHECK_BOUNDS
| #define ARRAYOFARRAYS_CHECK_BOUNDS |
( |
|
i | ) |
|
Check that i is a valid array index.
- Parameters
-
| i | The array index to check. |
- Note
- This is only active when LVARRAY_BOUNDS_CHECK is defined.
◆ ARRAYOFARRAYS_CHECK_BOUNDS2
| #define ARRAYOFARRAYS_CHECK_BOUNDS2 |
( |
|
i, |
|
|
|
j |
|
) |
| |
Check that i is a valid array index and that j is a valid index into that array.
- Parameters
-
| i | The array index to check. |
| j | The index into the array to check. |
- Note
- This is only active when LVARRAY_BOUNDS_CHECK is defined.
◆ ARRAYOFARRAYS_CHECK_INSERT_BOUNDS
| #define ARRAYOFARRAYS_CHECK_INSERT_BOUNDS |
( |
|
i | ) |
|
Check that i is a valid index to insert an array at.
- Parameters
-
| i | The array index to check. |
- Note
- This is only active when LVARRAY_BOUNDS_CHECK is defined.
◆ ARRAYOFARRAYS_CHECK_INSERT_BOUNDS2
| #define ARRAYOFARRAYS_CHECK_INSERT_BOUNDS2 |
( |
|
i, |
|
|
|
j |
|
) |
| |
Check that i is a valid array index and that j is a valid insertion index into that array.
- Parameters
-
| i | The array index to check. |
| j | The index into the array to check. |
- Note
- This is only active when LVARRAY_BOUNDS_CHECK is defined.