Calculates the number of one-bits. Uses a 64-bit two's complement binary representation of the input. Returns: An ee.Array.
(self)
| 179 | return apifunction.ApiFunction.call_(self.name() + '.atan2', self, right) |
| 180 | |
| 181 | def bitCount(self) -> Array: |
| 182 | """Calculates the number of one-bits. |
| 183 | |
| 184 | Uses a 64-bit two's complement binary representation of the input. |
| 185 | |
| 186 | Returns: |
| 187 | An ee.Array. |
| 188 | """ |
| 189 | |
| 190 | return apifunction.ApiFunction.call_(self.name() + '.bitCount', self) |
| 191 | |
| 192 | @staticmethod |
| 193 | # pylint: disable-next=redefined-builtin |