Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/numpy/numpy
/ __rfloordiv__
Method
__rfloordiv__
numpy/polynomial/_polybase.py:625–629 ·
view source on GitHub ↗
(self, other)
Source
from the content-addressed store, hash-verified
623
return
NotImplemented
624
625
def
__rfloordiv__(self, other):
626
res = self.__rdivmod__(other)
627
if
res is NotImplemented:
628
return
res
629
return
res[0]
630
631
def
__rmod__(self, other):
632
res = self.__rdivmod__(other)
Callers
1
__rdiv__
Method · 0.95
Calls
1
__rdivmod__
Method · 0.95
Tested by
no test coverage detected