ee.Array.toInt32
On an element-wise basis, casts the input value to a signed 32-bit integer.
Usage | Returns |
---|
Array.toInt32() | Array |
Argument | Type | Details |
---|
this: input | Array | The input array. |
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."],[[["`toInt32()` is an Array method that operates element-wise, converting each element to a signed 32-bit integer."],["The method returns a new Array containing the converted elements, leaving the original Array unchanged."],["The input to `toInt32()` is an Array and there are no additional arguments."]]],["The input array's values are cast to signed 32-bit integers element-wise. The `toInt32()` method, when called on an array (`Array.toInt32()`), returns a new array containing these converted integer values. The method takes one argument: `input`, which is the array to be transformed. The conversion is performed for each element within the `input` array.\n"]]