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