ui.Map.Linker.insert
Inserts an element at the specified index and shifts the rest of the list. If the specified index is greater than the length of the list, the element will be appended to the list.
Returns this ui.data.ActiveList.
Usage | Returns |
---|
Linker.insert(index, el) | ui.data.ActiveList |
Argument | Type | Details |
---|
this: ui.data.activelist | ui.data.ActiveList | The ui.data.ActiveList instance. |
index | Number | The index at which to insert the element. |
el | Object | The element to insert. |
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2023-10-06 UTC.
[null,null,["Last updated 2023-10-06 UTC."],[[["The `insert` function adds an element to a `ui.data.ActiveList` at a specific index, shifting existing elements if necessary."],["If the provided index exceeds the list's length, the element is appended to the end."],["The function returns the modified `ui.data.ActiveList` instance for chaining purposes."],["The function requires the index where the element should be inserted and the element itself as arguments."]]],["The `insert` method adds an element (`el`) to a `ui.data.ActiveList` at a given `index`. If `index` exceeds the list's length, the element is appended. It shifts existing elements to accommodate the insertion. The method returns the modified `ui.data.ActiveList` instance. It takes three arguments: The `ui.data.ActiveList` itself, the index to insert the element, and the element to insert.\n"]]