Insert all values in the input array into the set.
(byte[][] a)
| 138 | * Insert all values in the input array into the set. |
| 139 | */ |
| 140 | public void load(byte[][] a) { |
| 141 | for (byte[] x : a) { |
| 142 | insert(x); |
| 143 | } |
| 144 | } |
| 145 | |
| 146 | /** |
| 147 | * Try to insert with up to n value's "poked out". Return the last value poked out. |