Z3
SeqExpr.java
Go to the documentation of this file.
1
18package com.microsoft.z3;
19
23public class SeqExpr<R extends Sort> extends Expr<SeqSort<R>>
24{
29 SeqExpr(Context ctx, long obj)
30 {
31 super(ctx, obj);
32 }
33}