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