org.reactfx.util.HexaFunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of reactfx Show documentation
Show all versions of reactfx Show documentation
Reactive event streams for JavaFX
package org.reactfx.util;
@FunctionalInterface
public interface HexaFunction {
R apply(A a, B b, C c, D d, E e, F f);
default PentaFunction pApply(A a) {
return (b, c, d, e, f) -> apply(a, b, c, d, e, f);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy