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

io.itdraft.gwt.util.function.VoidFunction3 Maven / Gradle / Ivy

Go to download

Util.gwt is a suite of utility classes to work with DOM, HTML5 storage. Util.gwt has classes for rate limiting, better JS interop and many more.

The newest version!
package io.itdraft.gwt.util.function;

@FunctionalInterface
public interface VoidFunction3 {
    void accept(F f, S s, T t);

    default void apply(F f, S s, T t) {
        accept(f, s, t);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy