
net.cassite.f.Misc Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of f Show documentation
Show all versions of f Show documentation
a library to write async vert.x code similar as using java syntax
The newest version!
package net.cassite.f;
class Misc {
private Misc() {
}
@FunctionalInterface
interface IntFunction {
int apply(T t);
}
@FunctionalInterface
interface FloatFunction {
float apply(T t);
}
@FunctionalInterface
interface LongFunction {
long apply(T t);
}
@FunctionalInterface
interface DoubleFunction {
double apply(T t);
}
@FunctionalInterface
interface ShortFunction {
short apply(T t);
}
@FunctionalInterface
interface ByteFunction {
byte apply(T t);
}
@FunctionalInterface
interface CharFunction {
char apply(T t);
}
@FunctionalInterface
interface BoolFunction {
boolean apply(T t);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy