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