
net.cassite.f.Misc Maven / Gradle / Ivy
package net.cassite.f;
class Misc {
private Misc() {
}
@FunctionalInterface
interface IntFunction {
int apply(T t);
}
interface FloatFunction {
float apply(T t);
}
interface LongFunction {
long apply(T t);
}
interface DoubleFunction {
double apply(T t);
}
interface ShortFunction {
short apply(T t);
}
interface ByteFunction {
byte apply(T t);
}
interface CharFunction {
char apply(T t);
}
interface BoolFunction {
boolean apply(T t);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy