package org.simpleflatmapper.util; public interface BiConsumer<T, U> { void accept(T t, U u); }