dotty.runtime.function.JProcedure0 Maven / Gradle / Ivy
The newest version!
/*
* Copyright (C) 2012-2014 Typesafe Inc.
*/
package dotty.runtime.function;
import scala.runtime.BoxedUnit;
@FunctionalInterface
public interface JProcedure0 extends JFunction0, java.io.Serializable {
void applyVoid();
default BoxedUnit apply() {
applyVoid();
return BoxedUnit.UNIT;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy