| 273 | const SettingsValue* SettingsSpan::end() const { return data + size; } |
| 274 | bool SettingsSpan::empty() const { return size == 0 || last_negated(); } |
| 275 | bool SettingsSpan::last_negated() const { return size > 0 && data[size - 1].isFalse(); } |
| 276 | size_t SettingsSpan::negated() const |
| 277 | { |
| 278 | for (size_t i = size; i > 0; --i) { |
no test coverage detected