MCPcopy
hub / github.com/google/earthengine-api / equals

Method equals

python/ee/ee_list.py:182–192  ·  view source on GitHub ↗

Returns true if the list contains in order the same elements as other. Args: other: List to compare to. Returns: Boolean ComputedObject.

(self, other: _arg_types.List)

Source from the content-addressed store, hash-verified

180 return apifunction.ApiFunction.call_(self.name() + '.distinct', self)
181
182 def equals(self, other: _arg_types.List) -> computedobject.ComputedObject:
183 """Returns true if the list contains in order the same elements as other.
184
185 Args:
186 other: List to compare to.
187
188 Returns:
189 Boolean ComputedObject.
190 """
191
192 return apifunction.ApiFunction.call_(self.name() + '.equals', self, other)
193
194 # pylint: disable-next=redefined-builtin
195 def filter(self, filter: ee_filter.Filter) -> List:

Callers 4

element.jsFile · 0.45
ImageTimeSeries.jsFile · 0.45
LayerFilters.jsFile · 0.45
indexJoinFunction · 0.45

Calls 2

nameMethod · 0.95
call_Method · 0.80

Tested by

no test coverage detected