| 431 | } |
| 432 | |
| 433 | bool Print::keyTag(const std::string& key) { |
| 434 | bool result = Params::instance().keys_.empty(); |
| 435 | for (const auto& k : Params::instance().keys_) { |
| 436 | if (result) |
| 437 | break; |
| 438 | result = key == k; |
| 439 | } |
| 440 | return result; |
| 441 | } |
| 442 | |
| 443 | static void binaryOutput(const std::ostringstream& os) { |
| 444 | std::cout << os.str(); |