MCPcopy Create free account
hub / github.com/duckdb/duckdb / PrintF

Method PrintF

tools/shell/include/shell_state.hpp:328–330  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

326 void Print(const string &str);
327 template <typename... ARGS>
328 void PrintF(PrintOutput stream, const string &str, ARGS... params) {
329 Print(stream, StringUtil::Format(str, params...));
330 }
331 template <typename... ARGS>
332 void PrintF(const string &str, ARGS... params) {
333 PrintF(PrintOutput::STDOUT, str, std::forward<ARGS>(params)...);

Callers 15

RenderQueryResultMethod · 0.45
AnalyzeMethod · 0.45
ChangeDirectoryFunction · 0.45
SetSeparatorFunction · 0.45
DumpTableFunction · 0.45
ShowHelpFunction · 0.45
ToggleLogFunction · 0.45
SetMaxRowsFunction · 0.45
SetMaxWidthFunction · 0.45
PrintArgumentsFunction · 0.45
SetOutputModeFunction · 0.45
RunShellCommandFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected