#include <pqcrystals_encoding.h>
template<typename T, typename PolyCoeffT>
concept coeff_map_fn = std::signed_integral<PolyCoeffT> &&
requires(T fn, PolyCoeffT coeff) {
{ fn(coeff) } -> std::same_as<std::make_unsigned_t<PolyCoeffT>>;
}
Definition at line 47 of file pqcrystals_encoding.h.