| 27 | auto size() const { return items.size(); } |
| 28 | |
| 29 | [[nodiscard]] Value* begin() { return items.begin(); } |
| 30 | [[nodiscard]] const Value* begin() const { return items.begin(); } |
| 31 | [[nodiscard]] Value* end() { return items.end(); } |
| 32 | [[nodiscard]] const Value* end() const { return items.end(); } |
nothing calls this directly
no outgoing calls
no test coverage detected