ee.Array.toShort
On an element-wise basis, casts the input value to a signed 16-bit integer.
Usage | Returns |
---|
Array.toShort() | 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."],[[["The `toShort()` method converts each element of an input array to a signed 16-bit integer."],["It operates on an element-by-element basis, transforming the original array into a new array containing the converted values."],["The method takes the input array as an argument and returns a new array with the converted values, leaving the original array unchanged."]]],["The input array is cast element-wise to a signed 16-bit integer. The `toShort()` method, when applied to an array, returns a new array with the converted values. The input array itself serves as the argument for this operation. The method operates on each element of the given array and convert it to a short type.\n"]]