comparison 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
comparison
equal deleted inserted replaced
67:9d0fefce6985 68:00520880ad02
1 package fschmidt.util.java;
2
3
4 public interface Computable<A,V> {
5 public V get(A arg) throws ComputationException;
6 }