r"""Get the positional arguments of the operation corresponding to this Expr.
(self)
| 220 | |
| 221 | @property |
| 222 | def args(self): |
| 223 | r"""Get the positional arguments of the operation corresponding to this Expr.""" |
| 224 | args, _ = self.unflatten_args(self.inputs) |
| 225 | return args |
| 226 | |
| 227 | def _get_func(self): |
| 228 | # get called function when the expr is interpreted |
no test coverage detected