MCPcopy Index your code
hub / github.com/google/earthengine-api / bitwiseAnd

Method bitwiseAnd

python/ee/ee_array.py:206–218  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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.

Callers

nothing calls this directly

Calls 2

nameMethod · 0.95
call_Method · 0.80

Tested by

no test coverage detected