"benchmark/vscode:/vscode.git/clone" did not exist on "19818b9c2f8df06436412f61d192d065bc2f976e"
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