Formatter class.
Declared in <folly/Format.h>
template<
class Derived,
bool containerMode,
class Indices,
class... Args>
class BaseFormatterImpl;
Note that this class is tricky, as it keeps references to its lvalue arguments (while it takes ownership of the temporaries), and it doesn't copy the passed-in format string. Thankfully, you can't use this directly, you have to use format(...) below.
| Name |
|---|
BaseFormatterImpl<Derived, containerMode, std::index_sequence<I...>, Args...> |