(self, key)
| 219 | ) |
| 220 | |
| 221 | def operand(self, key): |
| 222 | # Access an operand unambiguously |
| 223 | # (e.g. if the key is reserved by a method/property) |
| 224 | return self.operands[type(self)._parameters.index(key)] |
| 225 | |
| 226 | def dependencies(self): |
| 227 | # Dependencies are `Expr` operands only |