MCPcopy Create free account
hub / github.com/Lauriat/funct / eq

Method eq

funct/Array.py:280–282  ·  view source on GitHub ↗

Returns x == y element-wise

(self, e, inplace=False)

Source from the content-addressed store, hash-verified

278 return self
279
280 def eq(self, e, inplace=False):
281 """ Returns x == y element-wise """
282 return self.__operate(operator.eq, e, inplace)
283
284 def eq_(self, e):
285 """ Returns x == y element-wise (in-place) """

Callers 2

equalMethod · 0.95
testMethod · 0.95

Calls 1

__operateMethod · 0.95

Tested by 1

testMethod · 0.76