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
The utility function _objIsLinear() could probably be made more efficient by doing some fancy business with obj.count() and other object methods.
The current function works well for small objects, but takes a bit of time for bigger ones.
It is O(n) in the worst case (not too bad), but could potentially be made O(1).
The text was updated successfully, but these errors were encountered:
The utility function
_objIsLinear()
could probably be made more efficient by doing some fancy business withobj.count()
and other object methods.The current function works well for small objects, but takes a bit of time for bigger ones.
It is
O(n)
in the worst case (not too bad), but could potentially be madeO(1)
.The text was updated successfully, but these errors were encountered: