Example usage for com.google.gwt.typedarrays.shared ArrayBuffer byteLength

List of usage examples for com.google.gwt.typedarrays.shared ArrayBuffer byteLength

Introduction

In this page you can find the example usage for com.google.gwt.typedarrays.shared ArrayBuffer byteLength.

Prototype

int byteLength();

Source Link

Document

The length of the ArrayBuffer in bytes, which does not change.

Usage

From source file:java.nio.DirectByteBuffer.java

License:Apache License

DirectByteBuffer(ArrayBuffer buf) {
    this(buf, buf.byteLength(), 0);
}