v0
This commit is contained in:
6
src/com/hypixel/fastutil/shorts/Short2ByteOperator.java
Normal file
6
src/com/hypixel/fastutil/shorts/Short2ByteOperator.java
Normal file
@@ -0,0 +1,6 @@
|
||||
package com.hypixel.fastutil.shorts;
|
||||
|
||||
@FunctionalInterface
|
||||
public interface Short2ByteOperator {
|
||||
byte apply(short var1, byte var2);
|
||||
}
|
||||
6
src/com/hypixel/fastutil/shorts/Short2CharOperator.java
Normal file
6
src/com/hypixel/fastutil/shorts/Short2CharOperator.java
Normal file
@@ -0,0 +1,6 @@
|
||||
package com.hypixel.fastutil.shorts;
|
||||
|
||||
@FunctionalInterface
|
||||
public interface Short2CharOperator {
|
||||
char apply(short var1, char var2);
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
package com.hypixel.fastutil.shorts;
|
||||
|
||||
@FunctionalInterface
|
||||
public interface Short2DoubleOperator {
|
||||
double apply(short var1, double var2);
|
||||
}
|
||||
6
src/com/hypixel/fastutil/shorts/Short2FloatOperator.java
Normal file
6
src/com/hypixel/fastutil/shorts/Short2FloatOperator.java
Normal file
@@ -0,0 +1,6 @@
|
||||
package com.hypixel.fastutil.shorts;
|
||||
|
||||
@FunctionalInterface
|
||||
public interface Short2FloatOperator {
|
||||
float apply(short var1, float var2);
|
||||
}
|
||||
6
src/com/hypixel/fastutil/shorts/Short2IntOperator.java
Normal file
6
src/com/hypixel/fastutil/shorts/Short2IntOperator.java
Normal file
@@ -0,0 +1,6 @@
|
||||
package com.hypixel.fastutil.shorts;
|
||||
|
||||
@FunctionalInterface
|
||||
public interface Short2IntOperator {
|
||||
int apply(short var1, int var2);
|
||||
}
|
||||
6
src/com/hypixel/fastutil/shorts/Short2LongOperator.java
Normal file
6
src/com/hypixel/fastutil/shorts/Short2LongOperator.java
Normal file
@@ -0,0 +1,6 @@
|
||||
package com.hypixel.fastutil.shorts;
|
||||
|
||||
@FunctionalInterface
|
||||
public interface Short2LongOperator {
|
||||
long apply(short var1, long var2);
|
||||
}
|
||||
10267
src/com/hypixel/fastutil/shorts/Short2ObjectConcurrentHashMap.java
Normal file
10267
src/com/hypixel/fastutil/shorts/Short2ObjectConcurrentHashMap.java
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,6 @@
|
||||
package com.hypixel.fastutil.shorts;
|
||||
|
||||
@FunctionalInterface
|
||||
public interface Short2ObjectOperator<V> {
|
||||
V apply(short var1, V var2);
|
||||
}
|
||||
6
src/com/hypixel/fastutil/shorts/Short2ShortOperator.java
Normal file
6
src/com/hypixel/fastutil/shorts/Short2ShortOperator.java
Normal file
@@ -0,0 +1,6 @@
|
||||
package com.hypixel.fastutil.shorts;
|
||||
|
||||
@FunctionalInterface
|
||||
public interface Short2ShortOperator {
|
||||
short apply(short var1, short var2);
|
||||
}
|
||||
Reference in New Issue
Block a user