All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.lambda.actions.Action3 Maven / Gradle / Ivy

The newest version!
package org.lambda.actions;

public interface Action3
{
  public static  Action3 doNothing()
  {
    return (In1, In2, In3) -> {
    };
  }
  // begin-snippet: action3_call
  public void call(In1 a, In2 b, In3 c);
  // end-snippet
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy