| 711 | : params(std::move(params_)), code_points(params.order, BEGIN) {} |
| 712 | |
| 713 | void serialize(WriteBuffer & out) const |
| 714 | { |
| 715 | params.serialize(out); |
| 716 | |
| 717 | size_t size = table.size(); |
| 718 | writeBinary(size, out); |
| 719 | |
| 720 | for (const auto & elem : table) |
| 721 | { |
| 722 | writeBinary(elem.getKey(), out); |
| 723 | elem.getMapped().serialize(out); |
| 724 | } |
| 725 | } |
| 726 | |
| 727 | void deserialize(ReadBuffer & in) |
| 728 | { |
nothing calls this directly
no test coverage detected