| 5862 | typedef const T& type; |
| 5863 | base_func(const std::size_t& n) : exprtk::ifunction<T>(n) {} |
| 5864 | inline T operator()(type v0, type v1, type v2, type v3, type v4) exprtk_test_override { return (v0 + v1 + v2 + v3 + v4); } |
| 5865 | inline T operator()(type v0, type v1, type v2, type v3) exprtk_test_override { return (v0 + v1 + v2 + v3); } |
| 5866 | inline T operator()(type v0, type v1, type v2) exprtk_test_override { return (v0 + v1 + v2); } |
| 5867 | inline T operator()(type v0, type v1) exprtk_test_override { return (v0 + v1); } |