repr 0.1
Reconstructable string representations and more
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages Concepts
options.h
Go to the documentation of this file.
#pragma once
#include <cstddef>
namespace librepr {
struct Options {
bool print_type = true;
bool explicit_types = false;
[[nodiscard]] bool should_print_type(std::size_t level) const {
if (level == 0) {
return print_type;
}
}
};
} // namespace librepr