Module MatchPattern.UnaryPattern

type operator =
  1. | Plus
  2. | Minus
and 'M argument =
  1. | NumberLiteral of 'M NumberLiteral.t
  2. | BigIntLiteral of 'M BigIntLiteral.t
and 'M t = {
  1. operator : operator;
  2. argument : 'M * 'M argument;
  3. comments : ('M, unit) Syntax.t option;
}
val pp_operator : Format.formatter -> operator -> unit
val show_operator : operator -> string
val pp_argument : (Format.formatter -> 'M -> unit) -> Format.formatter -> 'M argument -> unit
val show_argument : (Format.formatter -> 'M -> unit) -> 'M argument -> string
val pp : (Format.formatter -> 'M -> unit) -> Format.formatter -> 'M t -> unit
val show : (Format.formatter -> 'M -> unit) -> 'M t -> string