drop/helpers.hpp
Vinzenz Schroeter 6fec798425 initial commit
2025-04-17 13:39:05 +02:00

7 lines
147 B
C++

#pragma once
/// returns the amount of elements in an array
template<class T> constexpr int length(T arr[]) {
return sizeof(arr) / sizeof(T);
}