folly::BaseFormatterImpl

Formatter class.

Synopsis

Declared in <folly/Format.h>

template<
    class Derived,
    bool containerMode,
    class Indices,
    class... Args>
class BaseFormatterImpl;

Description

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.

Specializations

Name
BaseFormatterImpl<Derived, containerMode, std::index_sequence<I...>, Args...>