Add some documentation

This commit is contained in:
Isaac Shoebottom 2023-11-17 12:51:26 -04:00
parent 001e3638fe
commit 27b42b6ed1

View File

@ -1,9 +1,11 @@
#pragma once #pragma once
// Will determine the size of an array only if it is declared on the stack // Will determine the size of an array only if it is declared on the stack
#define foreach(type, item, array) \ // Need to dereference the item, as it is a pointer to the current element
for (type* item = array; item < array + (sizeof(array) / sizeof(type)); item++) #define foreach(type, item, array) \
for (type* item = array; item < array + (sizeof(array) / sizeof(type)); item++)
// Need to pass in the size of the array, since heap allocated arrays don't work with sizeof
#define foreach_p(type, item, array, size) \ // Need to pass in the size of the array, since heap allocated arrays don't work with sizeof
for (type* item = array; item < array + size; item++) // Need to dereference the item, as it is a pointer to the current element
#define foreach_p(type, item, array, size) \
for (type* item = array; item < array + size; item++)