@eagleoutice/flowr
Version:
Static Dataflow Analyzer and Program Slicer for the R Programming Language
15 lines (14 loc) • 601 B
TypeScript
import type { SummarizedSlicerStats, UltimateSlicerStats } from '../summarizer/data';
/**
* Formats the given nanoseconds into a human-readable string.
*/
export declare function formatNanoseconds(nanoseconds: bigint | number): string;
/**
* Converts the given stats to a human-readable string.
* You may have to {@link summarizeSlicerStats | summarize} the stats first.
*/
export declare function stats2string(stats: SummarizedSlicerStats): string;
/**
* Converts reduction stats to a human-readable string.
*/
export declare function ultimateStats2String(stats: UltimateSlicerStats): string;