| 192 | #undef SONIC_ADD_NODE |
| 193 | |
| 194 | sonic_force_inline bool node() noexcept { |
| 195 | if (sonic_likely(np_ < cap_)) { |
| 196 | np_++; |
| 197 | return true; |
| 198 | } else { |
| 199 | return false; |
| 200 | } |
| 201 | } |
| 202 | |
| 203 | NodeType *st_{nullptr}; |
| 204 | size_t np_{0}; |
nothing calls this directly
no outgoing calls
no test coverage detected