#pragma once namespace MathUtils { template constexpr T Abs(T t) { return t < 0 ? -t : t; } } // namespace Math