jon.recoil.org

Module Mode.Crossing

Some modes on an axis might be indistinguishable for values of some type, in which case the actual mode of values can be strenghthened (or equivalently the expected mode loosened) accordingly to make more programs mode-check. The capabilities/permissions to perform such adjustments are called mode crossing and depicted in this module.

We define an ordering on the crossings: t0 <= t1 iff t0 allows more adjustments than t1. By this ordering, the currently representable crossings form a lattice:

module Monadic : sig ... end
module Comonadic : sig ... end

The mode crossing capability on all axes, split into monadic and comonadic fragments.

module Axis : sig ... end
val create : regionality:bool -> linearity:bool -> uniqueness:bool -> portability:bool -> contention:bool -> forkable:bool -> yielding:bool -> statefulness:bool -> visibility:bool -> staticity:bool -> Ocaml_typing.Mode.Crossing.t

Convenience for creating a mode crossing capability on all axes, using a boolean for each axis where true means full crossing and false means no crossing. Alternatively, call Monadic.create and Comonadic.create and pack the results into a record of type t.

Project a mode crossing (of all axes) onto the specified axis.

Set the specified axis to the specified crossing.

modality m t gives the mode crossing of type T wrapped in modality m where T has mode crossing t.

Takes a mode crossing t, returns the modality needed to make max into t. More precisely, to_modality is the inverse of modality _ max.

Apply mode crossing on a left mode, making it stronger.

Apply mode crossing on a right mode, making it more permissive.

Similar to apply_left but for Alloc via alloc_as_value

Similar to apply_right but for Alloc via alloc_as_value

Print the mode crossing by axis. Omit axes that do not cross.