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

scala.runtime.java8.JProcedure0 Maven / Gradle / Ivy

There is a newer version: 2.13.16
Show newest version

/*
 * 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