Functor State_builder.SharedCounter

module SharedCounter: 
functor (Info : sig
val name : string
end-> Counter 

Creates a counter that is shared among all projects, but which is marshalling-compliant.

Parameters:
Info : sig val name : string end

val next : unit -> int

Increments the counter and returns a fresh value

val get : unit -> int
val self : State.t