I am struggling to properly set up my OCaml environment to use ppx derivers map, fold and iter, as devined here: https://github.com/ocaml-ppx/ppx_deriving#plugins-iter-map-and-fold
My minimal example is here (I am using Base since this is a library I am using in my wider project):
open Base;;
type data = Row of float array | Dim of data array
[@@deriving iter, map, fold, show];;
let t = Row [|2.;2.|];;
pp_data Caml.Format.std_formatter t;;
map_data (fun x -> x +. 1.) t;;
pp_data Caml.Format.std_formatter t;;
The following code is compiled with
ocamlfind ocamlc -package base -package ppx_deriving.iter -package ppx_deriving.map -package ppx_deriving.fold -package ppx_deriving.show -linkpkg -g test.ml && ./a.out; I get a compilation error stating that map_data has type data -> data. But according to the documentation and my general knowledge, map gets a function and a mappable structure, which seems not to be the case here. Testing this in utop gives me the same error.
Is there anything I am missing?
Thank you in advance :)
These derivers work on polymorphic data structures and apply a user function to all values corresponding to the type variables of that structure. Since you don't have any type variables the generated
map_datafunction is deficient, but quite natural, as an absence of the type variable implies a constant function.In other words, the general structure of the
map_xfunction for some polymorphictype ('s1, ..., 'sN) xwithNtype variables isI.e., for each type variable it expects a function that maps values of that type to some other type so that the number of arguments to the map function is
N+1In your case since you have zero type variables, there are no mapping functions so you have justx -> x.If you will redefine your type as
You will get
map_datawith the expect type('a -> 'b) -> 'a data -> 'b data. The deriver will even understand that an array is a data structure and recurse into it, e.g.,Of course, if you don't want a polymorphic type in your interface, you can always create a type alias, e.g.,
and expose map_data as