16 lines
370 B
Java
16 lines
370 B
Java
package androidx.emoji2.text.flatbuffer;
|
|
|
|
import java.nio.ByteBuffer;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class DoubleVector extends BaseVector {
|
|
public DoubleVector __assign(int i, ByteBuffer byteBuffer) {
|
|
__reset(i, 8, byteBuffer);
|
|
return this;
|
|
}
|
|
|
|
public double get(int i) {
|
|
return this.bb.getDouble(__element(i));
|
|
}
|
|
}
|