Return an iterable of (fid,fval) pairs, where fid is a feature identifier and fval is the corresponding feature value, for all features defined by this FeatStruct.
(self)
| 214 | raise NotImplementedError() # Implemented by subclasses. |
| 215 | |
| 216 | def _items(self): |
| 217 | """Return an iterable of (fid,fval) pairs, where fid is a |
| 218 | feature identifier and fval is the corresponding feature |
| 219 | value, for all features defined by this FeatStruct.""" |
| 220 | raise NotImplementedError() # Implemented by subclasses. |
| 221 | |
| 222 | ##//////////////////////////////////////////////////////////// |
| 223 | # { Equality & Hashing |
no outgoing calls
no test coverage detected