ee.List.swap
Swaps the elements at the specified positions. A negative position counts backwards from the end of the list.
Usage | Returns |
---|
List.swap(pos1, pos2) | List |
Argument | Type | Details |
---|
this: list | List | |
pos1 | Integer | |
pos2 | Integer | |
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 2024-06-05 UTC.
[null,null,["Last updated 2024-06-05 UTC."],[[["The `List.swap` method exchanges elements within a list based on their positions."],["Positions can be specified using positive or negative integers, with negative values counting backwards from the end of the list."],["The method modifies the original list and returns the updated list."]]],["The `List.swap` function exchanges elements within a list based on their positions. It accepts two integer arguments, `pos1` and `pos2`, representing the positions of the elements to be swapped. Negative positions are interpreted as offsets from the end of the list. The function modifies the list in place and returns the updated list. It takes the list as input and requires two integer position inputs.\n"]]