All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.nijian.jkeel.algorithms.debug.Output Maven / Gradle / Ivy

There is a newer version: 0.0.6
Show newest version
package com.github.nijian.jkeel.algorithms.debug;

/**
 * Output is for debugging.
 *
 * @param  calculation result type
 * @param  output specification type
 * @param  real output type
 * @author nj
 * @since 0.0.1
 */
public interface Output {

    /**
     * Write calculation result to output with specification
     *
     * @param result calculation result
     * @param spec   output specification
     * @param out    real output
     */
    void write(R result, S spec, O out);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy