Home
last modified time | relevance | path

Searched refs:comma_printer (Results 1 – 1 of 1) sorted by relevance

/dports/games/hyperrogue/hyperrogue-12.0f/
H A Dhprint.cpp221 struct comma_printer { struct
225 comma_printer(hstream& hs) : first(true), hs(hs) {} in comma_printer() argument
228 …_t X> void print(hstream& hs, const array<T, X>& a) { print(hs, "("); comma_printer c(hs); for(con… in print()
229 template<class T> void print(hstream& hs, const vector<T>& a) { print(hs, "("); comma_printer c(hs)… in print()
231 …class U> void print(hstream& hs, const map<T,U>& a) { print(hs, "("); comma_printer c(hs); for(aut… in print()
235 print(hs, "("); comma_printer c(hs); in print()
247 comma_printer p(hs); in print()