Removes the element at the specified position. @param index entry index @return self reference
(final int index)
| 89 | * @return self reference |
| 90 | */ |
| 91 | public Atts remove(final int index) { |
| 92 | final byte[][] lst = list; |
| 93 | final int s = size; |
| 94 | Array.remove(lst, index, 2, s); |
| 95 | lst[s - 2] = null; |
| 96 | lst[s - 1] = null; |
| 97 | size = s - 2; |
| 98 | return this; |
| 99 | } |
| 100 | |
| 101 | /** |
| 102 | * Checks if the specified name is found. |