Reads a token array. @return double array @throws IOException I/O Exception
()
| 93 | * @throws IOException I/O Exception |
| 94 | */ |
| 95 | public byte[][] readTokens() throws IOException { |
| 96 | final int l = readNum(); |
| 97 | final byte[][] tmp = new byte[l][]; |
| 98 | for(int i = 0; i < l; ++i) tmp[i] = readToken(); |
| 99 | return tmp; |
| 100 | } |
| 101 | |
| 102 | /** |
| 103 | * Reads a compressed integer value; see {@link Num} for more. |