コード例 #1
0
ファイル: FlatBufferBuilder.java プロジェクト: 0101RGB/CREPAS
 // Adds a scalar to the buffer, properly aligned, and the buffer grown
 // if needed.
 public void addBoolean(boolean x) {
   prep(1, 0);
   putBoolean(x);
 }