carbon_intf.ml
carbon
1 2 3 4 5 6 7 module type Intensity = sig type t (** A configuration parameter for the API *) val get_intensity : t -> int option (** [get_intensity t] returns the current gCO2/kWh if available. *) end
1 2 3 4 5 6 7
module type Intensity = sig type t (** A configuration parameter for the API *) val get_intensity : t -> int option (** [get_intensity t] returns the current gCO2/kWh if available. *) end