- 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
432 B
Java
20 lines
432 B
Java
package androidx.emoji2.text.flatbuffer;
|
|
|
|
import java.nio.ByteBuffer;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class ByteVector extends BaseVector {
|
|
public ByteVector __assign(int i, ByteBuffer byteBuffer) {
|
|
__reset(i, 1, byteBuffer);
|
|
return this;
|
|
}
|
|
|
|
public byte get(int i) {
|
|
return this.bb.get(__element(i));
|
|
}
|
|
|
|
public int getAsUnsigned(int i) {
|
|
return get(i) & 255;
|
|
}
|
|
}
|