package mirage-profile

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. name : string;
  2. mutable value : int;
}
val create : ?init:int -> name:string -> unit -> t
val make : name:string -> t
val set_value : t -> int -> unit
val increase : t -> int -> unit
val value : t -> int