1 package org.kuali.common.jute.base; 2 3 public interface Reducer<A, B> { 4 5 B apply(B b, A a); 6 7 }