##// END OF EJS Templates
revset: make __len__ part of the offical API...
Pierre-Yves David -
r22995:2587631c default
parent child Browse files
Show More
@@ -2255,6 +2255,12 b' class abstractsmartset(object):'
2255 2255 Return None if the set is empty"""
2256 2256 raise NotImplementedError()
2257 2257
2258 def __len__(self):
2259 """return the length of the smartsets
2260
2261 This can be expensive on smartset that could be lazy otherwise."""
2262 raise NotImplementedError()
2263
2258 2264 def reverse(self):
2259 2265 """reverse the expected iteration order"""
2260 2266 raise NotImplementedError()
General Comments 0
You need to be logged in to leave comments. Login now