mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
20 lines
502 B
Java
20 lines
502 B
Java
package androidx.emoji2.text.flatbuffer;
|
|
|
|
import io.flutter.embedding.android.KeyboardMap;
|
|
import java.nio.ByteBuffer;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public final class IntVector extends BaseVector {
|
|
public IntVector __assign(int i, ByteBuffer byteBuffer) {
|
|
__reset(i, 4, byteBuffer);
|
|
return this;
|
|
}
|
|
|
|
public int get(int i) {
|
|
return this.bb.getInt(__element(i));
|
|
}
|
|
|
|
public long getAsUnsigned(int i) {
|
|
return get(i) & KeyboardMap.kValueMask;
|
|
}
|
|
}
|