| 46 | */ |
| 47 | template <class T> |
| 48 | void encode(const gsl::span<const int64_t>& vec, Plaintext& pt) { |
| 49 | auto encoder = this->get<T>(); |
| 50 | encoder->encode(vec, pt); |
| 51 | } |
| 52 | template <class T> |
| 53 | void encode(const vector<int64_t>& vec, Plaintext& pt) { |
| 54 | auto encoder = this->get<T>(); |
nothing calls this directly
no test coverage detected