strip_combboolSyntax.strip_comb : term -> term * term list
Iteratively breaks apart combinations (function applications).
If M has the form t t1 ... tn then
strip_comb M returns (t,[t1,...,tn]). Note
that
strip_comb(list_mk_comb(t,[t1,...,tn]))
will not be (t,[t1,...,tn]) if t is a
combination.
Never fails.
> strip_comb (Term `x /\ y`);
val it = (“$/\”, [“x”, “y”]): term * term list
> strip_comb T;
val it = (“T”, []): term * term list
Term.list_mk_comb,
Term.dest_comb