Module Expression.Update

type operator =
  1. | Increment
  2. | Decrement
and ('M, 'T) t = {
  1. operator : operator;
  2. argument : ('M, 'T) Expression.t;
  3. prefix : bool;
  4. comments : ('M, unit) Syntax.t option;
}
val pp_operator : Format.formatter -> operator -> unit
val show_operator : operator -> string
val pp : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> Format.formatter -> ('M, 'T) t -> unit
val show : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> ('M, 'T) t -> string