dest_neg
boolSyntax.dest_neg : term -> term
Breaks apart a negation, returning its body.
dest_neg is a term destructor for negations: if M has the form ~t, then dest_neg M returns t.
M
~t
dest_neg M
t
Fails with dest_neg if term is not a negation.
boolSyntax.mk_neg, boolSyntax.is_neg
boolSyntax.mk_neg
boolSyntax.is_neg