template struct Core::static_max

#include <coreprimitives.h>

template <int64 a, int64 b>
struct static_max
{
    // fields

    static const int value = a> b ? a : b;
};