Interface BiConverter<A,​B,​C>


  • public interface BiConverter<A,​B,​C>
    This interface would be a TriConsumer if such an interface existed in the JDK. Its main use is for functions with two input variables and one pre-allocated output on individual pixels.
    • Method Detail

      • convert

        void convert​(A inputA,
                     B outputB,
                     C output)