#ifndef CK_NUMBER_HPP #define CK_NUMBER_HPP #include "integral_constant.hpp" namespace ck { template using Number = integral_constant; } // namespace ck #endif