package ppx_custom_printf

  1. Overview
  2. Docs
Printf-style format-strings for user-defined string conversion

Install

Dune Dependency

Authors

Maintainers

Sources

v0.14.1.tar.gz
md5=18518b0464d61d165f4c73475d648ccb

CHANGES.md.html

v0.11

Depend on ppxlib instead of (now deprecated) ppx_core, ppx_driver, ppx_metaquot, ppx_traverse and ppx_type_conv.

113.43.00

  • use the new context-free API

113.24.00

  • OCaml makes no distinctions between "foo" and {whatever|foo|whatever}. The delimiter choice is simply left to the user.

    Do the same in our ppx rewriters: i.e. wherever we accept "foo", also accept {whatever|foo|whatever}.

  • Fix missing location in errors for broken custom printf example like:

    printf !"%{sexp: int" 3;;
    
  • Update to follow Ppx_core evolution.