"vscode:/vscode.git/clone" did not exist on "d066d9b8e0995bbc2107791068892b61b81789cf"
number.hpp 265 Bytes
Newer Older
Chao Liu's avatar
Chao Liu committed
1
2
3
4
5
6
7
8
9
10
#ifndef CK_NUMBER_HPP
#define CK_NUMBER_HPP

#include "integral_constant.hpp"

namespace ck {

template <index_t N>
using Number = integral_constant<index_t, N>;

11
12
13
template <index_t N>
using LongNumber = integral_constant<long_index_t, N>;

Chao Liu's avatar
Chao Liu committed
14
15
} // namespace ck
#endif