From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail3-relais-sop.national.inria.fr (mail3-relais-sop.national.inria.fr [192.134.164.104]) by sympa.inria.fr (Postfix) with ESMTPS id 903777FCE9 for ; Fri, 27 Jan 2017 18:56:07 +0100 (CET) X-IronPort-AV: E=Sophos;i="5.33,296,1477954800"; d="scan'208";a="211187663" Received: from bou78-2-82-240-46-163.fbx.proxad.net (HELO MP-41019.local) ([82.240.46.163]) by mail3-relais-sop.national.inria.fr with ESMTP/TLS/DHE-RSA-AES128-SHA; 27 Jan 2017 18:56:07 +0100 To: caml-list@inria.fr From: =?UTF-8?Q?Fran=c3=a7ois_Pottier?= Message-ID: <588B89B9.8000502@inria.fr> Date: Fri, 27 Jan 2017 18:56:09 +0100 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:38.0) Gecko/20100101 Thunderbird/38.7.2 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit Subject: [Caml-list] [ANN] visitors Dear OCaml users, I would like to announce the first release of the "visitors" package. It is a syntax extension for OCaml, or more accurately, a plugin for the "ppx_deriving" syntax extension. By annotating a type definition with [@@deriving visitors { ... }], one requests the automatic generation of visitor classes, which make it easy to traverse and transform a data structure. The documentation (which contains many examples) is here: http://gallium.inria.fr/~fpottier/visitors/manual.pdf To install the package via opam, use the following commands: opam update opam install visitors The project's repository is public: git clone git@gitlab.inria.fr:fpottier/visitors.git Comments and feedback are welcome. -- François Pottier francois.pottier@inria.fr http://gallium.inria.fr/~fpottier/