Module Flambda2_terms.Coeffects
type t = | No_coeffects(*"No coeffects" means that the primitive does not observe the effects (in the sense described above) of other expressions. For example, it must not read from any mutable storage or call arbitrary external functions.
It is assumed in Flambda that, subject to data dependencies, expressions with neither effects nor coeffects may be reordered with respect to other expressions.
*)| Has_coeffects(*The primitive may be affected by effects from other expressions.
*)
Things that the world does to a primitive application.
val print : Stdlib.Format.formatter -> Flambda2_terms.Coeffects.t -> unitPrint function.
val compare : Flambda2_terms.Coeffects.t -> Flambda2_terms.Coeffects.t -> intComparison function.
Join two coeffects.
val from_lambda : Primitive.coeffects -> Flambda2_terms.Coeffects.t