├── .gitignore ├── .ocamlformat ├── CHANGES.md ├── CONTRIBUTING.md ├── LICENSE.md ├── Makefile ├── README.mdx ├── dune ├── dune-project ├── ppx_string.opam ├── runtime ├── dune ├── ppx_string_runtime.ml ├── ppx_string_runtime.mli └── ppx_string_runtime_intf.ml └── src ├── dune ├── ppx_string.ml ├── ppx_string.mli └── ppx_string_intf.ml /.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | *.install 3 | *.merlin 4 | _opam 5 | 6 | -------------------------------------------------------------------------------- /.ocamlformat: -------------------------------------------------------------------------------- 1 | profile=janestreet 2 | -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janestreet/ppx_string/HEAD/CHANGES.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janestreet/ppx_string/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janestreet/ppx_string/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janestreet/ppx_string/HEAD/Makefile -------------------------------------------------------------------------------- /README.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janestreet/ppx_string/HEAD/README.mdx -------------------------------------------------------------------------------- /dune: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 3.17) 2 | -------------------------------------------------------------------------------- /ppx_string.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janestreet/ppx_string/HEAD/ppx_string.opam -------------------------------------------------------------------------------- /runtime/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janestreet/ppx_string/HEAD/runtime/dune -------------------------------------------------------------------------------- /runtime/ppx_string_runtime.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janestreet/ppx_string/HEAD/runtime/ppx_string_runtime.ml -------------------------------------------------------------------------------- /runtime/ppx_string_runtime.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janestreet/ppx_string/HEAD/runtime/ppx_string_runtime.mli -------------------------------------------------------------------------------- /runtime/ppx_string_runtime_intf.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janestreet/ppx_string/HEAD/runtime/ppx_string_runtime_intf.ml -------------------------------------------------------------------------------- /src/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janestreet/ppx_string/HEAD/src/dune -------------------------------------------------------------------------------- /src/ppx_string.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janestreet/ppx_string/HEAD/src/ppx_string.ml -------------------------------------------------------------------------------- /src/ppx_string.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janestreet/ppx_string/HEAD/src/ppx_string.mli -------------------------------------------------------------------------------- /src/ppx_string_intf.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janestreet/ppx_string/HEAD/src/ppx_string_intf.ml --------------------------------------------------------------------------------