package mopsa

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module type OrderedType = sig ... end

Input signature of the functor Map.Make.

type map_printer = {
  1. print_empty : string;
    (*

    Special text for empty maps

    *)
  2. print_begin : string;
    (*

    Text before the first binding

    *)
  3. print_arrow : string;
    (*

    Text between a key and its value

    *)
  4. print_sep : string;
    (*

    Text between two bindings

    *)
  5. print_end : string;
    (*

    Text after the last binding

    *)
}

MOPSA Tells how to print a map.

module type S = sig ... end

Output signature of the functor MapExt.Make.

OCaml

Innovation. Community. Security.