MCPcopy Create free account
hub / github.com/VCVRack/Rack / f

Function f

include/string.hpp:25–29  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

23inline const char* convertFArg(const std::string& s) {return s.c_str();}
24template<typename... Args>
25std::string f(Args... args) {
26 // Allows accessing the original f() above
27 typedef std::string (*FType)(const char* format, ...);
28 return FType(f)(convertFArg(args)...);
29}
30
31/** Replaces all characters to lowercase letters */
32std::string lowercase(const std::string& s);

Callers 4

~DeferWrapperMethod · 0.70
stepEulerFunction · 0.50
stepRK2Function · 0.50
stepRK4Function · 0.50

Calls 1

convertFArgFunction · 0.85

Tested by

no test coverage detected