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

@WebDocuments({"Lectures/GenericsAdvanced.pptx", "Lectures/GenericsAdvanced.pdf", "Videos/GenericsAdvanced.avi"})
public interface GenericAdder<OperandType> {
    public OperandType sum(OperandType val1, OperandType val2);
}