ui.Map.Linker.forEach
Iterates over each element, calling the provided callback. The callback is called for each element like: callback(element, index).
Usage | Returns |
---|
Linker.forEach(callback) | |
Argument | Type | Details |
---|
this: ui.data.activelist | ui.data.ActiveList | The ui.data.ActiveList instance. |
callback | Function | |
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 `forEach` method iterates through each element of a `ui.data.ActiveList`."],["For each element, it executes a provided callback function with the element and its index as arguments."],["The method is invoked on a `ui.data.ActiveList` instance (referred to as 'this' in the context of the callback)."],["It does not return any specific value (indicated by the empty 'Returns' column)."]]],["The `forEach` method iterates through each element in a `ui.data.ActiveList` instance. For every element, it executes a provided callback function. This callback receives two arguments: the current element and its index. No value is returned by `forEach`. The method requires a callback function as its argument and operates on the `ui.data.ActiveList` instance.\n"]]