| author | wenzelm |
| Tue, 22 Oct 2024 12:45:38 +0200 | |
| changeset 81229 | e18600daa904 |
| parent 76351 | 2cee31cd92f0 |
| permissions | -rw-r--r-- |
(* Title: Pure/General/zstd.ML Author: Makarius Support for Zstd compression (via Isabelle/Scala). *) signature Zstd = sig val compress: Bytes.T -> Bytes.T val uncompress: Bytes.T -> Bytes.T end; structure Zstd: Zstd = struct val compress = \<^scala>\<open>Zstd.compress\<close>; val uncompress = \<^scala>\<open>Zstd.uncompress\<close>; end;