Module MatchPattern.UnaryPattern

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