| 129 | } |
| 130 | |
| 131 | int alive() { |
| 132 | gc(); |
| 133 | int total = 0; |
| 134 | for (const auto &p : _instances) { |
| 135 | if (p.second > 0) { |
| 136 | total += p.second; |
| 137 | } |
| 138 | } |
| 139 | return total; |
| 140 | } |
| 141 | |
| 142 | void value() {} // Recursion terminator |
| 143 | // Takes one or more values, converts them to strings, then stores them. |
no outgoing calls