| 791 | struct QiFunc_replace : public QiFunc |
| 792 | { |
| 793 | QiFunc_replace() : QiFunc(2, 3) {} |
| 794 | QiVar exec(const std::vector<QiVar>& args, QiScriptInterpreter*) const override |
| 795 | { |
| 796 | return QiVar::replace_u8(args[0].toString(), args[1].toString(), args.size() > 2 ? args[2].toString() : std::string("")); |
nothing calls this directly
no outgoing calls
no test coverage detected