Interface BitVecSort<Bits, Name>

A Sort representing Bit Vector numbers of specified size

interface BitVecSort<Bits extends number = number, Name extends string = "main"> {
    ctx: Context<Name>;
    get ast(): Z3_ast;
    cast(other: CoercibleToBitVec<Bits, Name>): BitVec<Bits, Name>;
    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;
    size(): Bits;
    subsort(other: Sort<Name>): boolean;
}

Type Parameters

  • Bits extends number = number

    A number representing amount of bits for this sort

  • Name extends string = "main"

Hierarchy (View Summary)

Properties

Accessors

Methods