package ppx_nanocaml

  1. Overview
  2. Docs
Framework for writing nanopass-style compilers

Install

Dune Dependency

Authors

Maintainers

Sources

0.1.0.tar.gz
sha256=f9f6772ff2e53d8fb3c22b459e9eb1fd68aefff381c121c0588ea3d0791cf5ae
md5=38877f4878af035303e02b3c9a399e98

doc/nanocaml/Nanocaml/Lib/index.html

Module Nanocaml.Lib

val fold : 'a list -> 'b -> ('a -> 'b -> 'b) -> 'b

fold (x::xs) z f = f x (fold xs z f) *

val map : 'a list -> ('a -> 'b) -> 'b list

map [x; y; ...] f = f x; f y; ... *

OCaml

Innovation. Community. Security.