On an element-wise basis, calculates the bitwise AND of the input values. Args: right: The values to AND with. Returns: An ee.Array.
(self, right: _arg_types.Array)
| 204 | return apifunction.ApiFunction.call_('Array.bitsToArray', input) |
| 205 | |
| 206 | def bitwiseAnd(self, right: _arg_types.Array) -> Array: |
| 207 | """On an element-wise basis, calculates the bitwise AND of the input values. |
| 208 | |
| 209 | Args: |
| 210 | right: The values to AND with. |
| 211 | |
| 212 | Returns: |
| 213 | An ee.Array. |
| 214 | """ |
| 215 | |
| 216 | return apifunction.ApiFunction.call_( |
| 217 | self.name() + '.bitwiseAnd', self, right |
| 218 | ) |
| 219 | |
| 220 | def bitwiseNot(self) -> Array: |
| 221 | """On an element-wise basis, calculates the bitwise NOT of the input. |