Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * Generic 0-arg function type.
- */
- public abstract class Function0<A> {
- /**
- * Invokes and returns <code>A</code>.
- *
- * @return call result
- */
- public abstract A apply() throws Exception;
- }
Advertisement
Add Comment
Please, Sign In to add comment