scala.runtime.java8.JProcedure1 Maven / Gradle / Ivy
/*
* Copyright (C) 2012-2015 Typesafe Inc.
*/
package scala.runtime.java8;
import scala.runtime.BoxedUnit;
@FunctionalInterface
public interface JProcedure1 extends JFunction1 {
default void $init$() {
}
void applyVoid(T1 t1);
default BoxedUnit apply(T1 t1) {
applyVoid(t1);
return BoxedUnit.UNIT;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy