package forester

  1. Overview
  2. Docs
A tool for tending mathematical forests

Install

Dune Dependency

Authors

Maintainers

Sources

4.0.0.tar.gz
md5=e6fc311885219d11faae87be4918566d
sha512=9e262f964d36404228f3f82eab803be126be247507c774ce417ce2ef652a8a0220da3e6446f971725a8080ba98c9679fd77e87956155af19c21b2925b2195e90

doc/src/forester.core/Env.ml.html

Source file Env.ml

1
2
3
4
5
6
7
8
9
10
include Map.Make (Symbol)

let pp (pp_el : Format.formatter -> 'a -> unit) : Format.formatter -> 'a t -> unit =
  fun fmt map ->
  Format.fprintf fmt "@[<v1>{";
  begin
    map |> iter @@ fun k v ->
    Format.fprintf fmt "@[%a ~> %a@]@;" Symbol.pp k pp_el v
  end;
  Format.fprintf fmt "}@]"
OCaml

Innovation. Community. Security.