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