23std::ostream & printLiteralBool(std::ostream & o,
bool b);
30std::ostream & printAttributeName(std::ostream & o, std::string_view s);
36bool isReservedKeyword(
const std::string_view str);
47std::ostream & printIdentifier(std::ostream & o, std::string_view s);
62 friend std::ostream & operator << (std::ostream & output,
const ValuePrinter & printer);
70 : state(state), value(value), options(options) { }
73std::ostream & operator<<(std::ostream & output,
const ValuePrinter & printer);
Options for printing Nix values.
Definition nixexpr.hh:104
Definition print-options.hh:39