This commit is contained in:
Intege-rs
2026-01-24 07:55:36 -05:00
commit 7a77188758
5298 changed files with 723645 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
package com.hypixel.fastutil.shorts;
@FunctionalInterface
public interface Short2ByteOperator {
byte apply(short var1, byte var2);
}

View File

@@ -0,0 +1,6 @@
package com.hypixel.fastutil.shorts;
@FunctionalInterface
public interface Short2CharOperator {
char apply(short var1, char var2);
}

View File

@@ -0,0 +1,6 @@
package com.hypixel.fastutil.shorts;
@FunctionalInterface
public interface Short2DoubleOperator {
double apply(short var1, double var2);
}

View File

@@ -0,0 +1,6 @@
package com.hypixel.fastutil.shorts;
@FunctionalInterface
public interface Short2FloatOperator {
float apply(short var1, float var2);
}

View File

@@ -0,0 +1,6 @@
package com.hypixel.fastutil.shorts;
@FunctionalInterface
public interface Short2IntOperator {
int apply(short var1, int var2);
}

View File

@@ -0,0 +1,6 @@
package com.hypixel.fastutil.shorts;
@FunctionalInterface
public interface Short2LongOperator {
long apply(short var1, long var2);
}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,6 @@
package com.hypixel.fastutil.shorts;
@FunctionalInterface
public interface Short2ObjectOperator<V> {
V apply(short var1, V var2);
}

View File

@@ -0,0 +1,6 @@
package com.hypixel.fastutil.shorts;
@FunctionalInterface
public interface Short2ShortOperator {
short apply(short var1, short var2);
}