(self, other)
| 422 | self.rank) |
| 423 | |
| 424 | def merge_with(self, other): |
| 425 | if self != other: |
| 426 | raise ValueError("SparseMetaData objects are incompatible: %s vs. %s" |
| 427 | % (self, other)) |
| 428 | if self.sparse: |
| 429 | self.rank.merge_with(other.rank) |
| 430 | return self |
| 431 | |
| 432 | @property |
| 433 | def map_op(self): |
no outgoing calls
no test coverage detected