Removes the first occurrence of the specified element from this array, if it is present. If the array does not contain the element, it is unchanged. @param element element to be removed from this array, if present @return true if this array contained the specified element, false otherwise @since 2.
(JsonElement element)
| 160 | * @since 2.3 |
| 161 | */ |
| 162 | @CanIgnoreReturnValue |
| 163 | public boolean remove(JsonElement element) { |
| 164 | return elements.remove(element); |
| 165 | } |
| 166 | |
| 167 | /** |
| 168 | * Removes the element at the specified position in this array. Shifts any subsequent elements to |
no outgoing calls