view src/fschmidt/util/java/Computable.java @ 68:00520880ad02

add fschmidt source
author Franklin Schmidt <fschmidt@gmail.com>
date Sun, 05 Oct 2025 17:24:15 -0600
parents
children
line wrap: on
line source

package fschmidt.util.java;


public interface Computable<A,V> {
	public V get(A arg) throws ComputationException;
}