tfhe_libex
int16.hpp
[詳解]
1 
5 #ifndef INT16
6 #define INT16
7 #include "integer.hpp"
8 
12 class TFHEInt16 : public TFHEInteger<16> {
13  public:
14  friend class TFHEArray<TFHEInt16>;
15  TFHEInt16();
16  TFHEInt16(int number);
17  TFHEInt16(const TFHEInt16& elm);
18  TFHEInt16(const TFHEInteger<16>& elm);
19  TFHEInt16(const TFHEIntegerCore& elm);
20 };
21 #endif
TFHEArray
TFHEの多次元配列のクラス.
Definition: array.hpp:15
TFHEIntegerCore
TFHEの整数型のcoreクラス.
Definition: integer_core.hpp:18
TFHEInteger
TFHEの整数型のクラス.
Definition: integer.hpp:17
TFHEInt16
TFHEの16bitsの整数型のクラス.
Definition: int16.hpp:12
integer.hpp
TFHEの整数型のクラス.