Create an expression representing t[0] - t[1] - ....
(Expr<? extends R>... t)
| 1002 | * Create an expression representing {@code t[0] - t[1] - ...}. |
| 1003 | **/ |
| 1004 | @SafeVarargs |
| 1005 | public final <R extends ArithSort> ArithExpr<R> mkSub(Expr<? extends R>... t) |
| 1006 | { |
| 1007 | checkContextMatch(t); |
| 1008 | return (ArithExpr<R>) Expr.create(this, |
| 1009 | Native.mkSub(nCtx(), t.length, AST.arrayToNative(t))); |
| 1010 | } |
| 1011 | |
| 1012 | /** |
| 1013 | * Create an expression representing {@code -t}. |
no test coverage detected