package ppx_map
Install
dune-project
Dependency
Authors
Maintainers
Sources
md5=14c90f1728ac5eb6d538aa484f0deaf2
sha512=6c1141339af8bce23fe75b503958ca8a1605cc5201340e77d991f6f78290719bd10ffa07ba745ab0d9bf0e2bd2ce0857063244f75c948f8157bf816a1727008d
doc/README.html
ppx_map
ppx_map is a PPX rewriter to simplify the definition of maps.
Usage
Simple cases
If the type of your map keys is simple enough (bool, char, float, int, string or unit) and the PPX can deduce it, it is as simple as:
[%map 0 => "zero"; 1 => "one"; 2 => "two"]which will give something similar to:
let module Int_map = Map.Make (Int) in
Int_map.(empty |> add 0 "zero" |> add 1 "one" |> add 2 "two")The extension is able to automatically type the map if the first key is a non-bound value (e.g. not defined by a let) of the types given above. For example,
let a = 0 in
[%map a => "zero"; 1 => "one"; 2 => "two"]will give the following compilation error:
Error: `map' cannot infer the type of this value. You need to give an explicit
bool, char, float, int, string or unit.whereas
let a = 0 in
[%map 1 => "one"; a => "zero"; 2 => "two"]will work just fine.
More complex cases
If the first key you give is a bound value, you need to help the rewriter a little:
let (a, b, c) = (0, 1, 2) in
[%map Int; a => "zero"; b => "one"; c => "two"]You can also use functors!
[%map Functor (Module); key => value]But they need to be of arity 1 (Functor (Module) (Module') cannot be used as it wouldn’t work well with OCaml’s parser). As we could expect, using a generative functor gives the following compilation error:
Error: This expression has type 'a $Map.t
but an expression was expected of type 'b
The type constructor $Map.t would escape its scopeDon’t do that!