Interface InList<Ext>

[NOT] IN (...list)

interface InList<Ext> {
    _tag: "InList";
    expr: Expr<Ext>;
    extensions: null | Ext["InList"];
    list: Expr<Ext>[];
    negated: boolean;
}

Type Parameters

Hierarchy

  • Tagged<"InList", {
        expr: Expr<Ext>;
        extensions: Ext["InList"] | null;
        list: Expr<Ext>[];
        negated: boolean;
    }>
    • InList

Properties

_tag: "InList"
expr: Expr<Ext>
extensions: null | Ext["InList"]
list: Expr<Ext>[]
negated: boolean

Generated using TypeDoc