Puts a value with the specified key into this map. @param index map index (starting with 0, must be valid) @param value value to insert @return updated map @throws QueryException query exception
(int index, Value value)
| 162 | * @throws QueryException query exception |
| 163 | */ |
| 164 | public abstract XQMap putAt(int index, Value value) throws QueryException; |
| 165 | |
| 166 | /** |
| 167 | * Removed a key from this map. |