package ppx_repr

  1. Overview
  2. Docs
PPX deriver for type representations

Install

Dune Dependency

Authors

Maintainers

Sources

repr-fuzz-0.2.1.tbz
sha256=0ca29b7273870190b724e6db1f782980c175c50d9a208ff8ad351cbbb85a7fb1
sha512=5b7d32724e70ffcbc15bdefc71871148d0f2b743f6d664891e1126d194d3752dfb7715dbbe6046bcbd6f19c384a840b3e66c4130b5bb663580aeb6d697d7a20d

doc/src/ppx_repr.lib/attributes_intf.ml.html

Source file attributes_intf.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
open Ppxlib

module type S = sig
  val repr : (core_type, expression) Attribute.t
  val nobuiltin : (core_type, unit) Attribute.t
end

module type Attributes = sig
  module type S = S

  module Make (T : sig
    val namespace : string
  end) : sig
    include S

    val all : Attribute.packed list
    (** Boxed list of all of the attributes required by [ppx_repr]. *)
  end
end
OCaml

Innovation. Community. Security.