Interface ReSort<Name, SeqSortRef>

Regular expression sort

interface ReSort<
    Name extends string = "main",
    SeqSortRef extends SeqSort<Name> = SeqSort<Name>,
> {
    ctx: Context<Name>;
    get ast(): Z3_ast;
    basis(): SeqSortRef;
    cast(other: Re<Name, SeqSortRef>): Re<Name, SeqSortRef>;
    cast(other: CoercibleToExpr<Name>): Expr<Name, AnySort<Name>, unknown>;
    eqIdentity(other: Ast<Name, unknown>): boolean;
    hash(): number;
    id(): number;
    kind(): Z3_sort_kind;
    name(): string | number;
    neqIdentity(other: Ast<Name, unknown>): boolean;
    sexpr(): string;
    subsort(other: Sort<Name>): boolean;
}

Type Parameters

Hierarchy (View Summary)

Properties

Accessors

Methods