MCPcopy Create free account
hub / github.com/GothenburgBitFactory/taskwarrior / getBinaryOperators

Method getBinaryOperators

src/Eval.cpp:194–200  ·  view source on GitHub ↗

/////////////////////////////////////////////////////////////////////////// Static.

Source from the content-addressed store, hash-verified

192////////////////////////////////////////////////////////////////////////////////
193// Static.
194std::vector<std::string> Eval::getBinaryOperators() {
195 std::vector<std::string> all;
196 for (const auto& opr : operators)
197 if (opr.type == 'b') all.push_back(opr.op);
198
199 return all;
200}
201
202////////////////////////////////////////////////////////////////////////////////
203void Eval::evaluatePostfixStack(const std::vector<std::pair<std::string, Lexer::Type>>& tokens,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected