Mercurial Hosting > nabble
view src/fschmidt/util/java/Computable.java @ 69:4bc1fc540265 default tip
update luan
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Sun, 05 Oct 2025 20:45:39 -0600 |
parents | 00520880ad02 |
children |
line wrap: on
line source
package fschmidt.util.java; public interface Computable<A,V> { public V get(A arg) throws ComputationException; }