| 89 | */ |
| 90 | template <class T, class R> |
| 91 | void decode(const Plaintext& pt, R& result) { |
| 92 | auto encoder = this->get<T>(); |
| 93 | encoder->decode(pt, result); |
| 94 | } |
| 95 | |
| 96 | /* |
| 97 | Template for slot count. |
nothing calls this directly
no outgoing calls
no test coverage detected