Add a new key to the dictionary. @param bytes the bytes of the string to add @param offset the offset of the string @param length the length of the string @return the position of the key in the dictionary
(byte[] bytes, int offset, int length)
| 82 | * @return the position of the key in the dictionary |
| 83 | */ |
| 84 | int add(byte[] bytes, int offset, int length); |
| 85 | |
| 86 | /** |
| 87 | * Get the number of entries in the dictionary. |
no outgoing calls