Sets a value interval. @param index the index value. @param value the value to set (can be null).
(long index, V value)
| 49 | * @param value the value to set (can be null). |
| 50 | */ |
| 51 | public void set(long index, V value) |
| 52 | { |
| 53 | set(index, index, value); |
| 54 | } |
| 55 | |
| 56 | /** |
| 57 | * Sets a value interval. |