jon.recoil.org

Module S.Axis

type ('p, 'r) t =
  1. | Areality : ('a comonadic_with, 'a) Axis.t
  2. | Forkable : ('areality comonadic_with, Forkable.Const.t) Axis.t
  3. | Yielding : ('areality comonadic_with, Yielding.Const.t) Axis.t
  4. | Linearity : ('areality comonadic_with, Linearity.Const.t) Axis.t
  5. | Statefulness : ('areality comonadic_with, Statefulness.Const.t) Axis.t
  6. | Portability : ('areality comonadic_with, Portability.Const.t) Axis.t
  7. | Uniqueness : (monadic, Uniqueness.Const.t) Axis.t
  8. | Visibility : (monadic, Visibility.Const.t) Axis.t
  9. | Contention : (monadic, Contention.Const.t) Axis.t
  10. | Staticity : (monadic, Staticity.Const.t) Axis.t

('p, 'r) t represents a projection from a product of type 'p to an element of type 'r.

NB: must listed in the order of axis implication. See typemode.ml.

val print : Stdlib.Format.formatter -> ('p, 'r) Axis.t -> unit
val eq : ('p, 'r0) Axis.t -> ('p, 'r1) Axis.t -> ('r0, 'r1) Misc.eq option