NOTE: the 0-argument form (default constructor) is required for Cython
| 63 | |
| 64 | // NOTE: the 0-argument form (default constructor) is required for Cython |
| 65 | explicit Arity(int num_args = 0, bool is_varargs = false) |
| 66 | : num_args(num_args), is_varargs(is_varargs) {} |
| 67 | |
| 68 | /// The number of required arguments (or the minimum number for varargs |
| 69 | /// functions). |
no outgoing calls