Module TaglessFinal.ExpressionContext

This module provides a type that represents Python expression contexts.

Expression contexts are mainly used to syntactically differentiate among expressions that will be read at runtime, those that will be written at runtime, and those that will be deled at runtime.

As of Python 3.11, there are 6 kinds of expressions with an explicit context field:

These expressions are allowed to appear at the following "target" positions:

type 'a t = private {
load : 'a;
store : 'a;
del : 'a;
}
val make : load:'a -> store:'a -> del:'a -> unit -> 'a t

Constructor of t.