Home Reference Source

es6/data/output_history.es6



export class OutputHistory{
    constructor(data){
        this.data = data;
    }

    getOutput(tracestep){
        /*
         * Get the output at a specified trace step in the history
         */
        return this.data[tracestep];
    }
}