Map function f over sequence s. Returns a new sequence where f is applied to each element of s.
(Expr<?> f, Expr<SeqSort<R>> s)
| 2322 | * Returns a new sequence where f is applied to each element of s. |
| 2323 | */ |
| 2324 | public final <R extends Sort> SeqExpr<R> mkSeqMap(Expr<?> f, Expr<SeqSort<R>> s) |
| 2325 | { |
| 2326 | checkContextMatch(f, s); |
| 2327 | return (SeqExpr<R>) Expr.create(this, Native.mkSeqMap(nCtx(), f.getNativeObject(), s.getNativeObject())); |
| 2328 | } |
| 2329 | |
| 2330 | /** |
| 2331 | * Map function f over sequence s starting at index i. |
no test coverage detected