Functor State_builder.Counter


module Counter: 
functor (Info : sig
val name : string
end) -> sig .. end
Creates a shared counter which is marshalling compliant.
Since Nitrogen-20111001
Parameters:
Info : sig val name : string end

val next : unit -> int
Increments the counter and returns a fresh value
val self : State.t