adt4j icon indicating copy to clipboard operation
adt4j copied to clipboard

adt4j - Algebraic Data Types for Java

Results 12 adt4j issues
Sort by recently updated
recently updated
newest added

Suppose that you have a class that represents HTTP-endpoints Like this: ``` java interface URLVisitor { R userIndex(); R user(int id); R postIndex(int userID); R post(int postID); } ``` During...

I still have no idea how to create proper tests for annotation processor. adt4j-examples project becomes unwieldy. We need code with compile-time errors to proper test adt4j.