MCPcopy Create free account
hub / github.com/fmtlib/fmt / context

Method context

include/fmt/base.h:2643–2644  ·  view source on GitHub ↗

Constructs a `context` object. References to the arguments are stored in the object so make sure they have appropriate lifetimes.

Source from the content-addressed store, hash-verified

2641 /// Constructs a `context` object. References to the arguments are stored
2642 /// in the object so make sure they have appropriate lifetimes.
2643 constexpr context(iterator out, format_args args, locale_ref loc = {})
2644 : out_(out), args_(args), loc_(loc) {}
2645 context(context&&) = default;
2646 context(const context&) = delete;
2647 void operator=(const context&) = delete;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected