package lectures.generics.advanced;
import util.annotations.WebDocuments;

@WebDocuments({"Lectures/GenericsAdvanced.pptx", "Lectures/GenericsAdvanced.pdf", "Videos/GenericsAdvanced.avi"})
public class AGenericAdder<OperandType> implements GenericAdder<OperandType> {
    @Override
    public OperandType sum(OperandType val1, OperandType val2) {
//      return val1 + val2;
        return null;
    }
}