Returns the size (in bytes) of an array with n elements.
| 73 | |
| 74 | // Returns the size (in bytes) of an array with n elements. |
| 75 | constexpr size_t sizeofArray(size_t n) { |
| 76 | return n * ResourceManager::slotSize; |
| 77 | } |
| 78 | |
| 79 | ARDUINOJSON_END_PRIVATE_NAMESPACE |
no outgoing calls
no test coverage detected