| 2787 | } |
| 2788 | |
| 2789 | simdjson_warn_unused error_code minify(const char *buf, size_t len, char *dst, size_t &dst_len) noexcept { |
| 2790 | return get_active_implementation()->minify(reinterpret_cast<const uint8_t *>(buf), len, reinterpret_cast<uint8_t *>(dst), dst_len); |
| 2791 | } |
| 2792 | simdjson_warn_unused bool validate_utf8(const char *buf, size_t len) noexcept { |
| 2793 | return get_active_implementation()->validate_utf8(buf, len); |
| 2794 | } |