template struct Core::static_min

#include <coreprimitives.h>

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

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