UNPKG

@eagleoutice/flowr-dev

Version:

Static Dataflow Analyzer and Program Slicer for the R Programming Language

12 lines (11 loc) 306 B
export declare enum Ternary { Always = "always", Maybe = "maybe", Never = "never" } export declare const TernaryLogic: { name: string; negate(this: void, value: Ternary): Ternary; or(this: void, ...values: Ternary[]): Ternary; and(this: void, ...values: Ternary[]): Ternary; };