package ppx_protocol_conv

  1. Overview
  2. Docs
Ppx for generating serialisation and de-serialisation functions of ocaml types

Install

Dune Dependency

Authors

Maintainers

Sources

5.0.0.tar.gz
md5=fb107eb8055a9b2410b23e763c63bb70
sha512=fc0acc9d40665904b99ccfe4ca33a78a47ffedb6a2ee9c72c98c8bc21bda7e53fe8826784183ef9daa0fc228336169d2e0418668ffe39c149365e0a8e69a1f69

doc/ppx_protocol_conv.driver/Ppx_protocol_driver/Make/argument-2-P/index.html

Parameter Make.P

val field_name : string -> string

Map field names of records Mapping is done after applying [@key] attribute.

Default is identity

val variant_name : string -> string

Map variant and constructor names. Mapping is done after applying [@name] attribute.

Default is identity

val constructors_without_arguments_as_string : bool

Map constructors with no arguments to a string. If true, constructors without arguments are mapped to a string, instead of than a list containing only the constructor / variant name.

Default is true

val omit_default_values : bool

Omit default values from output. If true, default values are not serialized. Note that this uses polymorphic compare to determine if a field value is the same as the default value.

Default is true

val eager : bool

Lazy evaluate lazy fields. If true, lazy fields are parsed eagerly. If false, lazy fields are parsed first when forced, which means they will hold the serialized structure until forced, and forcing might raise a parse error.

Default is true

val strict : bool

Fail if unknown fields are encountered when deserialising records.

Default is false

OCaml

Innovation. Community. Security.