| 103 | } |
| 104 | |
| 105 | std::string |
| 106 | TupleObject::toString(ssize_t max_size) const |
| 107 | { |
| 108 | const ssize_t remaining_size = max_size - 2; // Make room for the '(' and the ')' |
| 109 | return "(" + formatSequence(Items(), d_manager, remaining_size) + ")"; |
| 110 | } |
| 111 | |
| 112 | const std::vector<remote_addr_t>& |
| 113 | TupleObject::Items() const |
no test coverage detected