- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
20 lines
442 B
Java
20 lines
442 B
Java
package androidx.emoji2.text.flatbuffer;
|
|
|
|
import java.nio.ByteBuffer;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class ShortVector extends BaseVector {
|
|
public ShortVector __assign(int i, ByteBuffer byteBuffer) {
|
|
__reset(i, 2, byteBuffer);
|
|
return this;
|
|
}
|
|
|
|
public short get(int i) {
|
|
return this.bb.getShort(__element(i));
|
|
}
|
|
|
|
public int getAsUnsigned(int i) {
|
|
return get(i) & 65535;
|
|
}
|
|
}
|