/////////////////////////////////////////////////////////////////////////// Static.
| 182 | //////////////////////////////////////////////////////////////////////////////// |
| 183 | // Static. |
| 184 | std::vector<std::string> Eval::getOperators() { |
| 185 | std::vector<std::string> all; |
| 186 | all.reserve(NUM_OPERATORS); |
| 187 | for (const auto& opr : operators) all.push_back(opr.op); |
| 188 | |
| 189 | return all; |
| 190 | } |
| 191 | |
| 192 | //////////////////////////////////////////////////////////////////////////////// |
| 193 | // Static. |
nothing calls this directly
no outgoing calls
no test coverage detected