package edu.washington.cse373.experiments; @FunctionalInterface public interface TriConsumer<A, B, C> { void accept(A a, B b, C c); }