You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Stop the usage of the magic method __len__ by creating a wrapper that also could call low level function to return the length of the underlying object.
Describe the solution you'd like
The API of this new len function will be:
len(obj)# returns an integer with the length of the underlying object
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Stop the usage of the magic method
__len__
by creating a wrapper that also could call low level function to return the length of the underlying object.Describe the solution you'd like
The API of this new
len
function will be:The text was updated successfully, but these errors were encountered: